Tabnine Logo
EndpointReferenceUtils.getMatchingMultiplexDestination
Code IndexAdd Tabnine to your IDE (free)

How to use
getMatchingMultiplexDestination
method
in
org.apache.cxf.wsdl.EndpointReferenceUtils

Best Java code snippets using org.apache.cxf.wsdl.EndpointReferenceUtils.getMatchingMultiplexDestination (Showing top 2 results out of 315)

origin: org.apache.cxf/cxf-api

/**
 * Obtain a multiplexed endpoint reference for the deployed service that contains the provided id
 * @param serviceQName identified the target service
 * @param portName identifies a particular port of the service, may be null
 * @param id that must be embedded in the returned reference
 * @param bus the current bus
 * @return a new reference or null if the target destination does not support destination mutiplexing  
 */
public static EndpointReferenceType getEndpointReferenceWithId(QName serviceQName, 
                                String portName, 
                                String id, 
                                Bus bus) {
  EndpointReferenceType epr = null;        
  MultiplexDestination destination = getMatchingMultiplexDestination(serviceQName, portName, bus);
  if (null != destination) {
    epr = destination.getAddressWithId(id);
  }
  return epr;
}

origin: org.apache.cxf/cxf-bundle-jaxrs

/**
 * Obtain a multiplexed endpoint reference for the deployed service that contains the provided id
 * @param serviceQName identified the target service
 * @param portName identifies a particular port of the service, may be null
 * @param id that must be embedded in the returned reference
 * @param bus the current bus
 * @return a new reference or null if the target destination does not support destination mutiplexing  
 */
public static EndpointReferenceType getEndpointReferenceWithId(QName serviceQName, 
                                String portName, 
                                String id, 
                                Bus bus) {
  EndpointReferenceType epr = null;        
  MultiplexDestination destination = getMatchingMultiplexDestination(serviceQName, portName, bus);
  if (null != destination) {
    epr = destination.getAddressWithId(id);
  }
  return epr;
}

org.apache.cxf.wsdlEndpointReferenceUtilsgetMatchingMultiplexDestination

Popular methods of EndpointReferenceUtils

  • getAnonymousEndpointReference
    Create an anonymous endpoint reference.
  • getServiceName
    Gets the service name of the provided endpoint reference.
  • getPortName
    Gets the port name of the provided endpoint reference.
  • getSchema
  • setServiceAndPortName
    Sets the service and port name of the provided endpoint reference.
  • createContextForEPR
  • createSchema
  • duplicate
    Create a duplicate endpoint reference sharing all atributes
  • findNamespaceHack
  • getAddress
    Get the address from the provided endpoint reference.
  • getJAXBContextForEPR
  • getNameSpaceUri
  • getJAXBContextForEPR,
  • getNameSpaceUri,
  • getService,
  • getServiceNameType,
  • getWSDLDefinition,
  • getWSDLLocation,
  • mint,
  • portNameMatches,
  • setWSDLLocation

Popular in Java

  • Making http requests using okhttp
  • compareTo (BigDecimal)
  • getContentResolver (Context)
  • addToBackStack (FragmentTransaction)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now