Tabnine Logo
EndpointHelper.transform
Code IndexAdd Tabnine to your IDE (free)

How to use
transform
method
in
com.arjuna.webservices11.wsaddr.EndpointHelper

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

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.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

/**
 * 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

/**
 * 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/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 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/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.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

/**
 * 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: 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.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.xts/jbossxts

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

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

public boolean isSecure()
{
  if (valid()) {
    CoordinationContextType coordinationContextType = _context.getCoordinationContext();
    W3CEndpointReference epref = coordinationContextType.getRegistrationService();
    NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, epref);
    String address = nativeRef.getAddress();
    return address.startsWith("https");
  }
  return false;
}
origin: org.jboss.jbossts.xts/jbossxts

public boolean isSecure()
{
  if (valid()) {
    CoordinationContextType coordinationContextType = _context.getCoordinationContext();
    W3CEndpointReference epref = coordinationContextType.getRegistrationService();
    NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, epref);
    String address = nativeRef.getAddress();
    return address.startsWith("https");
  }
  return false;
}
origin: org.jboss.jbossts/jbossxts

public boolean isSecure()
{
  if (valid()) {
    CoordinationContextType coordinationContextType = _context.getCoordinationContext();
    W3CEndpointReference epref = coordinationContextType.getRegistrationService();
    NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, epref);
    String address = nativeRef.getAddress();
    return address.startsWith("https");
  }
  return false;
}
origin: org.jboss.jbossts.xts/wstx11

public boolean isSecure()
{
  if (valid()) {
    CoordinationContextType coordinationContextType = _context.getCoordinationContext();
    W3CEndpointReference epref = coordinationContextType.getRegistrationService();
    NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, epref);
    String address = nativeRef.getAddress();
    return address.startsWith("https");
  }
  return false;
}
origin: org.jboss.jbossts.xts/wstx11

public boolean isSecure()
{
  if (valid()) {
    CoordinationContextType coordinationContextType = _context.getCoordinationContext();
    W3CEndpointReference epref = coordinationContextType.getRegistrationService();
    NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, epref);
    String address = nativeRef.getAddress();
    return address.startsWith("https");
  }
  return false;
}
origin: org.jboss.jbossts.xts/jbossxts

public boolean isSecure()
{
  if (valid()) {
    CoordinationContextType coordinationContextType = _context.getCoordinationContext();
    W3CEndpointReference epref = coordinationContextType.getRegistrationService();
    NativeEndpointReference nativeRef = EndpointHelper.transform(NativeEndpointReference.class, epref);
    String address = nativeRef.getAddress();
    return address.startsWith("https");
  }
  return false;
}
com.arjuna.webservices11.wsaddrEndpointHelpertransform

Popular methods of EndpointHelper

  • getSourceFromEndpointReference

Popular in Java

  • Making http requests using okhttp
  • runOnUiThread (Activity)
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Kernel (java.awt.image)
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Best plugins for Eclipse
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