Tabnine Logo
EndpointReferenceType
Code IndexAdd Tabnine to your IDE (free)

How to use
EndpointReferenceType
in
com.ebmwebsourcing.wsstar.addressing.definition.api

Best Java code snippets using com.ebmwebsourcing.wsstar.addressing.definition.api.EndpointReferenceType (Showing top 5 results out of 315)

origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

public Document getDocument(final EndpointReferenceType def) throws WSAddressingException {
  Document doc = null;
  if ((def != null) && (def instanceof EndpointReferenceType)) {
    doc = WSAddressingWriterImpl
        .convertEndpointReferenceType2DOMElement(
            def.getTagQName(),
            (com.ebmwebsourcing.wsstar.jaxb.addressing.EndpointReferenceType) ((AbstractSchemaElementImpl) def)
                .getModel());
    if (def.getDocumentBaseURI() != null) {
      doc.setDocumentURI(def.getDocumentBaseURI().getPath());
    }
  }
  return doc;
}
origin: com.ebmwebsourcing.wsstar/ws-notification-service

subsRef.setAddress(payload.getConsumerReference().getAddress());		
ReferenceParametersType ref = subsRef.newReferenceParameters();
subsRef.setReferenceParameters(ref);
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

  eprFrom.setAddress(ep.getEndpointName());
final org.ow2.easywsdl.wsdl.api.Endpoint defEp = this.bpeldefinition.getImports().findEndpoint(eprFrom.getAddress().trim());
    eprTo.setAddress(defEp.getAddress());
  } else {
    eprTo.setAddress(eprFrom.getAddress().trim());
  if(eprFrom.getAddress() != null) {
    if(defEp != null) {
      ep.setEndpointName(defEp.getName());
      ep.setAddress(defEp.getAddress());
    } else {
      ep.setAddress(eprFrom.getAddress().trim());
origin: com.ebmwebsourcing.wsstar/ws-notification-service

if (request.getConsumerReference().getReferenceParameters() != null){
  ResourcesUuidType rUuids = WsnSpecificTypeHelper.getResourcesUuidType(request.getConsumerReference().getReferenceParameters());
  if ((rUuids != null) && rUuids.getUuids().size() == 1){
    subscriptionId = rUuids.getUuids().get(0);
origin: com.ebmwebsourcing.wsstar/ws-notification-service

logger.log(Level.FINE, "PublisherReference : " + request.getPublisherReference().getAddress());
registrationEdpRef.setAddress(request.getPublisherReference().getAddress());
ReferenceParametersType ref = registrationEdpRef.newReferenceParameters();
registrationEdpRef.setReferenceParameters(ref);
  consumerRef.setAddress(request.getPublisherReference().getAddress());
  consRefPar = consumerRef.newReferenceParameters();
  consumerRef.setReferenceParameters(consRefPar);
com.ebmwebsourcing.wsstar.addressing.definition.apiEndpointReferenceType

Most used methods

  • getAddress
  • setAddress
  • getDocumentBaseURI
  • getReferenceParameters
  • getTagQName
  • newReferenceParameters
  • setReferenceParameters

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • getApplicationContext (Context)
  • scheduleAtFixedRate (Timer)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Top PhpStorm 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