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

How to use
getType
method
in
org.apache.axis2.description.AxisBinding

Best Java code snippets using org.apache.axis2.description.AxisBinding.getType (Showing top 17 results out of 315)

origin: org.apache.axis2/axis2-kernel

public static boolean isHttpBinding(AxisBinding binding) {
  String type = binding.getType();
  return WSDL2Constants.URI_WSDL2_HTTP.equals(type);
}
origin: apache/axis2-java

public static boolean isHttpBinding(AxisBinding binding) {
  String type = binding.getType();
  return WSDL2Constants.URI_WSDL2_HTTP.equals(type);
}
origin: org.apache.axis2/axis2-kernel

public static boolean isSoap12Binding(AxisBinding binding) {
  String type = binding.getType();
  if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
    String v = (String)binding
        .getProperty(WSDL2Constants.ATTR_WSOAP_VERSION);
    if (SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI.equals(v)) {
      return true;
    }
  }
  return false;
}
origin: org.apache.axis2/axis2-kernel

public static boolean isSoap11Binding(AxisBinding binding) {
  String type = binding.getType();
  if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
    String v = (String)binding
        .getProperty(WSDL2Constants.ATTR_WSOAP_VERSION);
    if (SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI.equals(v)) {
      return true;
    }
  }
  return false;
}
origin: apache/axis2-java

public static boolean isSoap12Binding(AxisBinding binding) {
  String type = binding.getType();
  if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
    String v = (String)binding
        .getProperty(WSDL2Constants.ATTR_WSOAP_VERSION);
    if (SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI.equals(v)) {
      return true;
    }
  }
  return false;
}
origin: apache/axis2-java

public static boolean isSoap11Binding(AxisBinding binding) {
  String type = binding.getType();
  if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
    String v = (String)binding
        .getProperty(WSDL2Constants.ATTR_WSOAP_VERSION);
    if (SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI.equals(v)) {
      return true;
    }
  }
  return false;
}
origin: org.apache.axis2/axis2-kernel

String bindingType = usedAxisBinding.getType();
origin: apache/axis2-java

String bindingType = usedAxisBinding.getType();
origin: org.apache.axis2/axis2-kernel

String type = axisBinding.getType();
if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
origin: apache/axis2-java

String type = axisBinding.getType();
if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
origin: org.apache.axis2/axis2-kernel

String type = axisBinding.getType();
if (WSDL2Constants.URI_WSDL2_HTTP.equals(type)) {
  OMElement port = fac.createOMElement(PORT, wsdl);                
origin: org.apache.axis2/axis2-kernel

String type = axisBinding.getType();
if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
origin: apache/axis2-java

String type = axisBinding.getType();
if (WSDL2Constants.URI_WSDL2_HTTP.equals(type)) {
  OMElement port = fac.createOMElement(PORT, wsdl);                
origin: apache/axis2-java

String type = axisBinding.getType();
if (Java2WSDLConstants.TRANSPORT_URI.equals(type)
    || WSDL2Constants.URI_WSDL2_SOAP.equals(type)) {
origin: org.apache.axis2/axis2-kernel

String type = axisBinding.getType();
origin: apache/axis2-java

String type = axisBinding.getType();
origin: apache/axis2-java

bindingType = axisBinding.getType();
org.apache.axis2.descriptionAxisBindinggetType

Popular methods of AxisBinding

  • getName
  • getChild
  • getProperty
  • getPolicySubject
  • <init>
  • addChild
  • getChildren
  • setName
  • setProperty
  • setType
  • addFault
  • getAxisEndpoint
  • addFault,
  • getAxisEndpoint,
  • getEffectivePolicy,
  • getFault,
  • getParameterValue,
  • setParent,
  • toWSDL20

Popular in Java

  • Making http post requests using okhttp
  • getApplicationContext (Context)
  • runOnUiThread (Activity)
  • requestLocationUpdates (LocationManager)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Collectors (java.util.stream)
  • Top plugins for WebStorm
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