engines/servicemix-wsn2005/src/main/java/org/apache/servicemix/wsn/component/WSNPullPointEndpoint.java [38:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public WSNPullPointEndpoint(CreatePullPoint request, QName service, String endpoint) {
        this.request = request;
        if (service != null) {
            this.service = service;
        } else {
            this.service = new QName("http://servicemix.org/wsnotification", "PullPoint");
        }
        if (endpoint != null) {
            this.endpoint = endpoint;
        } else {
            this.endpoint = new IdGenerator().generateSanitizedId();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



engines/servicemix-wsn2005/src/main/java/org/apache/servicemix/wsn/component/WSNSubscriptionEndpoint.java [38:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public WSNSubscriptionEndpoint(Subscribe request, QName service, String endpoint) {
        this.request = request;
        if (service != null) {
            this.service = service;
        } else {
            this.service = new QName("http://servicemix.org/wsnotification", "Subscription");
        }
        if (endpoint != null) {
            this.endpoint = endpoint;
        } else {
            this.endpoint = new IdGenerator().generateSanitizedId();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



engines/servicemix-wsn2005/src/main/java/org/apache/servicemix/wsn/component/WSNPublisherEndpoint.java [37:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public WSNPublisherEndpoint(RegisterPublisher request, QName service, String endpoint) {
        this.request = request;
        if (service != null) {
            this.service = service;
        } else {
            this.service = new QName("http://servicemix.org/wsnotification", "Publisher");
        }
        if (endpoint != null) {
            this.endpoint = endpoint;
        } else {
            this.endpoint = new IdGenerator().generateSanitizedId();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



