nmr/core/src/main/java/org/apache/servicemix/nmr/core/FilterMatchingReference.java [51:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            result = new ArrayList<InternalEndpoint>();
            for (Endpoint ep : registry.query(null)) {
                InternalEndpoint iep = (InternalEndpoint) ep;
                if (Boolean.valueOf((String) iep.getMetaData().get(Endpoint.UNTARGETABLE))) {
                    continue;
                }
                if (match(registry, iep)) {
                    result.add(iep);
                }
            }
            this.registry = registry;
            this.matches = result;
        }
        return result;
    }

    protected boolean match(EndpointRegistry registry, InternalEndpoint endpoint) {
        Map<String, ?> epProps = registry.getProperties(endpoint);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



nmr/core/src/main/java/org/apache/servicemix/nmr/core/PropertyMatchingReference.java [46:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            result = new ArrayList<InternalEndpoint>();
            for (Endpoint ep : registry.query(null)) {
                InternalEndpoint iep = (InternalEndpoint) ep;
                if (Boolean.valueOf((String) iep.getMetaData().get(Endpoint.UNTARGETABLE))) {
                    continue;
                }
                if (match(registry, iep)) {
                    result.add(iep);
                }
            }
            this.registry = registry;
            this.matches = result;
        }
        return result;
    }

    protected boolean match(EndpointRegistry registry, InternalEndpoint endpoint) {
        Map<String, ?> epProps = registry.getProperties(endpoint);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



