public String getRmiURL()

in src/main/java/org/apache/sling/jcr/registration/impl/RmiRegistrationSupport.java [228:237]


        public String getRmiURL() {
            String host;
            try {
                host = InetAddress.getLocalHost().getCanonicalHostName();
            } catch (IOException ignore) {
                host = "localhost";
            }
            return "//" + host + ":" + RmiRegistrationSupport.this.registryPort
                + "/" + this.getRmiName();
        }