congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
EndpointReferenceUtils.getAddress
Code IndexAdd Tabnine to your IDE (free)

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

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

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

public EndpointReferenceType getAddressWithId(String id) {
  EndpointReferenceType ref = null;
  if (isMultiplexWithAddress()) {
    String address = EndpointReferenceUtils.getAddress(reference);
    ref = EndpointReferenceUtils.duplicate(reference);
    if (address.endsWith("/")) {
      EndpointReferenceUtils.setAddress(ref, address + id);
    } else {
      EndpointReferenceUtils.setAddress(ref, address + "/" + id);
    }
  } else {
    ref = super.getAddressWithId(id);
  }
  return ref;
}
origin: org.apache.servicemix.cxf/org.apache.servicemix.cxf.transport.nmr

if (target != null) {
  serviceName = EndpointReferenceUtils.getServiceName(target, conduit.getBus());
  address = EndpointReferenceUtils.getAddress(target);
  portName = EndpointReferenceUtils.getPortName(target);
} else {
org.apache.cxf.wsdlEndpointReferenceUtilsgetAddress

Javadoc

Get the address from the provided endpoint reference.

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
  • getJAXBContextForEPR
  • getMatchingMultiplexDestination
  • getNameSpaceUri
  • getMatchingMultiplexDestination,
  • getNameSpaceUri,
  • getService,
  • getServiceNameType,
  • getWSDLDefinition,
  • getWSDLLocation,
  • mint,
  • portNameMatches,
  • setWSDLLocation

Popular in Java

  • Reactive rest calls using spring rest template
  • setScale (BigDecimal)
  • startActivity (Activity)
  • onCreateOptionsMenu (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • JFrame (javax.swing)
  • Top Sublime Text 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