Package org.mule.jbi.servicedesc

Examples of org.mule.jbi.servicedesc.ExternalEndpointImpl


  public void deactivateEndpoint(ServiceEndpoint endpoint) throws JBIException {
    this.endpoints.unregisterInternalEndpoint(endpoint);
  }

  public void registerExternalEndpoint(ServiceEndpoint externalEndpoint) throws JBIException {
    ExternalEndpointImpl se = new ExternalEndpointImpl();
    se.setEndpoint(externalEndpoint);
    se.setComponent(this.component.getName());
    se.setActive(true);
    this.endpoints.registerExternalEndpoint(se);
  }
View Full Code Here

TOP

Related Classes of org.mule.jbi.servicedesc.ExternalEndpointImpl

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.