Tabnine Logo
com.arjuna.webservices11.wsaddr
Code IndexAdd Tabnine to your IDE (free)

How to use com.arjuna.webservices11.wsaddr

Best Java code snippets using com.arjuna.webservices11.wsaddr (Showing top 20 results out of 315)

origin: org.jboss.narayana.xts/ws-c11

public void setReferenceParameters(List<Element> metadata)
{
 this.referenceParameters = new Elements(metadata);
}
origin: org.jboss.jbossts.xts/jbossxts

public void setAddress(String address)
{
 this.address = new Address(address);
}
origin: jbosstm/narayana

public static <T extends EndpointReference> JAXBContextUnmarshalAction<T> getInstance(
    final JAXBContext jaxbContext, final Source source, final Class<T> endpointReferenceClass) {
  return new JAXBContextUnmarshalAction<>(jaxbContext, source, endpointReferenceClass);
}
origin: org.jboss.jbossts.xts/jbossxts

/**
 * return a completion coordinator endpoint appropriate to the type of completion initiator
 * @param participant
 * @return either the secure terminaton participant endpoint or the non-secure endpoint
 */
MAPEndpoint getCompletionCoordinator(W3CEndpointReference participant)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, participant);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureCompletionCoordinator;
  } else {
    return completionCoordinator;
  }
}
origin: org.jboss.jbossts.xts/ws-t11

/**
 * return a coordinator endpoint appropriate to the type of participant
 * @param participant
 * @return either the secure terminaton participant endpoint or the non-secure endpoint
 */
MAPEndpoint getCoordinator(W3CEndpointReference participant)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, participant);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureTerminationCoordinator;
  } else {
    return terminationCoordinator;
  }
}
origin: jbosstm/narayana

public void setReferenceParameters(List<Element> metadata)
{
 this.referenceParameters = new Elements(metadata);
}
origin: org.jboss.jbossts/jbossxts

public void setAddress(String address)
{
 this.address = new Address(address);
}
origin: org.jboss.jbossts.xts/ws-t11

/**
 * return a completion coordinator endpoint appropriate to the type of completion initiator
 * @param participant
 * @return either the secure terminaton participant endpoint or the non-secure endpoint
 */
MAPEndpoint getCompletionCoordinator(W3CEndpointReference participant)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, participant);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureCompletionCoordinator;
  } else {
    return completionCoordinator;
  }
}
origin: org.jboss.jbossts/jbossxts

public void setMetadata(List<Element> metadata)
{
 this.metadata = new Elements(metadata);
}
origin: org.jboss.narayana.xts/ws-c11

public void setAddress(String address)
{
 this.address = new Address(address);
}
origin: org.jboss.jbossts.xts/ws-t11

/**
 * return a participant endpoint appropriate to the type of coordinator
 * @param coordinator
 * @return either the secure terminaton coordinator endpoint or the non-secure endpoint
 */
MAPEndpoint getParticipant(W3CEndpointReference coordinator)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, coordinator);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureTerminationParticipant;
  } else {
    return terminationParticipant;
  }
}
origin: org.jboss.jbossts/jbossxts

public void setReferenceParameters(List<Element> metadata)
{
 this.referenceParameters = new Elements(metadata);
}
origin: jbosstm/narayana

public void setAddress(String address)
{
 this.address = new Address(address);
}
origin: org.jboss.jbossts/jbossxts

/**
 * return a completion initiator endpoint appropriate to the type of completion coordinator
 * @param participant
 * @return either the secure terminaton participant endpoint or the non-secure endpoint
 */
MAPEndpoint getCompletionInitiator(W3CEndpointReference participant)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, participant);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureCompletionInitiator;
  } else {
    return completionInitiator;
  }
}
origin: org.jboss.jbossts.xts/jbossxts

public void setReferenceParameters(List<Element> metadata)
{
 this.referenceParameters = new Elements(metadata);
}
origin: org.jboss.jbossts.xts/jbossxts

/**
 * return a coordinator endpoint appropriate to the type of participant
 * @param participant
 * @return either the secure terminaton participant endpoint or the non-secure endpoint
 */
MAPEndpoint getCoordinator(W3CEndpointReference participant)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, participant);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureTerminationCoordinator;
  } else {
    return terminationCoordinator;
  }
}
origin: org.jboss.narayana.xts/ws-c11

public void setMetadata(List<Element> metadata)
{
 this.metadata = new Elements(metadata);
}
origin: org.jboss.jbossts/jbossxts

/**
 * return a participant endpoint appropriate to the type of coordinator
 * @param coordinator
 * @return either the secure terminaton coordinator endpoint or the non-secure endpoint
 */
MAPEndpoint getParticipant(W3CEndpointReference coordinator)
{
  NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, coordinator);
  String address = nativeRef.getAddress();
  if (address.startsWith("https")) {
    return secureTerminationParticipant;
  } else {
    return terminationParticipant;
  }
}
origin: org.jboss.jbossts.xts/jbossxts

public void setMetadata(List<Element> metadata)
{
 this.metadata = new Elements(metadata);
}
origin: jbosstm/narayana

public void setMetadata(List<Element> metadata)
{
 this.metadata = new Elements(metadata);
}
com.arjuna.webservices11.wsaddr

Most used classes

  • EndpointHelper
    helper class to allow transformation of W3CEndpointreference instances to internal types which are n
  • NativeEndpointReference
    internal representation of endpoint reference
  • AddressingHelper
    The complete addressing context.
  • NativeEndpointReference$Address
  • NativeEndpointReference$Elements
  • NativeEndpointReferenceContextAction
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