protected int httpPort()

in src/main/java/org/apache/sling/karaf/testing/KarafTestSupport.java [87:92]


    protected int httpPort() throws IOException {
        final Configuration configuration = configurationAdmin.getConfiguration("org.apache.felix.http");
        final Dictionary<String, Object> properties = configuration.getProperties();
        final Object port = properties.get("org.osgi.service.http.port");
        return Integer.parseInt(port.toString());
    }