Package org.apache.catalina.tribes.tipis.AbstractReplicatedMap

Examples of org.apache.catalina.tribes.tipis.AbstractReplicatedMap.MapEntry


            Endpoint targetEndpoint = endpointReference.getTargetEndpoint();
            for (Object v : map.values()) {
                Endpoint endpoint = (Endpoint)v;
                // TODO: implement more complete matching
                if (matches(targetEndpoint.getURI(), endpoint.getURI())) {
                    MapEntry entry = map.getInternal(endpoint.getURI());
                    if (!entry.isPrimary()) {
                        endpoint.setExtensionPointRegistry(registry);
                    }
                    foundEndpoints.add(endpoint);
                    logger.info("EndpointRegistry: Found endpoint with matching service  - " + endpoint);
                }
View Full Code Here

TOP

Related Classes of org.apache.catalina.tribes.tipis.AbstractReplicatedMap.MapEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.