congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
AxisBinding.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.axis2.description.AxisBinding
constructor

Best Java code snippets using org.apache.axis2.description.AxisBinding.<init> (Showing top 13 results out of 315)

origin: org.wso2.carbon.data/org.wso2.carbon.dataservices.core

/**
 * Creates a AxisBinding and populates it with default HTTP properties
 */
private AxisBinding createDefaultHTTPBinding(String name, String interfaceName) {
  AxisBinding httpBinding = new AxisBinding();
  httpBinding.setName(new QName(name + Java2WSDLConstants.HTTP_BINDING));
  httpBinding.setType(WSDL2Constants.URI_WSDL2_HTTP);
  httpBinding.setProperty(WSDL2Constants.INTERFACE_LOCAL_NAME, interfaceName);
  httpBinding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE, httpLocationTable);
  httpBinding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE_FOR_RESOURCE, httpLocationTableForResource);
  return httpBinding;
}
origin: apache/axis2-java

private AxisBinding processBinding(Binding binding, Interface serviceInterface)
    throws AxisFault {
  AxisBinding axisBinding = new AxisBinding();
  axisBinding.setName(binding.getName());
  String bindingType = binding.getType().toString();
  axisBinding.setType(bindingType);
  if (bindingType.equals(WSDL2Constants.URI_WSDL2_SOAP)) {
    processSOAPBindingExtention(binding, axisBinding, serviceInterface);
  } else if (bindingType.equals(WSDL2Constants.URI_WSDL2_HTTP)) {
    processHTTPBindingExtention(binding, axisBinding, serviceInterface);
  }
  // We should process the interface based on the service not on a binding
  processedBindings.put(binding.getName(), axisBinding);
  addDocumentation(axisBinding, binding.toElement());
  return axisBinding;
}
origin: org.apache.axis2/axis2-kernel

private AxisBinding processBinding(Binding binding, Interface serviceInterface)
    throws AxisFault {
  AxisBinding axisBinding = new AxisBinding();
  axisBinding.setName(binding.getName());
  String bindingType = binding.getType().toString();
  axisBinding.setType(bindingType);
  if (bindingType.equals(WSDL2Constants.URI_WSDL2_SOAP)) {
    processSOAPBindingExtention(binding, axisBinding, serviceInterface);
  } else if (bindingType.equals(WSDL2Constants.URI_WSDL2_HTTP)) {
    processHTTPBindingExtention(binding, axisBinding, serviceInterface);
  }
  // We should process the interface based on the service not on a binding
  processedBindings.put(binding.getName(), axisBinding);
  addDocumentation(axisBinding, binding.toElement());
  return axisBinding;
}
origin: org.wso2.carbon.data/org.wso2.carbon.dataservices.core

/**
 * Creates a AxisBinding and populates it with default SOAP 1.1 properties
 */
private AxisBinding createDefaultSOAP11Binding(String name, String interfaceName) {
  AxisBinding soap11Binding = new AxisBinding();
  soap11Binding.setName(new QName(name + Java2WSDLConstants.BINDING_NAME_SUFFIX));
  soap11Binding.setType(WSDL2Constants.URI_WSDL2_SOAP);
  soap11Binding.setProperty(WSDL2Constants.ATTR_WSOAP_PROTOCOL, WSDL2Constants.HTTP_PROTOCAL);
  soap11Binding.setProperty(WSDL2Constants.ATTR_WSOAP_VERSION, SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI);
  soap11Binding.setProperty(WSDL2Constants.INTERFACE_LOCAL_NAME, interfaceName);
  soap11Binding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE, httpLocationTable);
  soap11Binding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE_FOR_RESOURCE, httpLocationTableForResource);
  return soap11Binding;
}
origin: org.wso2.carbon.data/org.wso2.carbon.dataservices.core

/**
 * Creates a AxisBinding and populates it with default SOAP 1.2 properties
 */
private AxisBinding createDefaultSOAP12Binding(String name, String interfaceName) {
  AxisBinding soap12Binding = new AxisBinding();
  soap12Binding.setName(new QName(name + Java2WSDLConstants.SOAP12BINDING_NAME_SUFFIX));
  soap12Binding.setType(WSDL2Constants.URI_WSDL2_SOAP);
  soap12Binding.setProperty(WSDL2Constants.ATTR_WSOAP_PROTOCOL, WSDL2Constants.HTTP_PROTOCAL);
  soap12Binding.setProperty(WSDL2Constants.ATTR_WSOAP_VERSION, SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI);
  soap12Binding.setProperty(WSDL2Constants.INTERFACE_LOCAL_NAME, interfaceName);
  soap12Binding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE, httpLocationTable);
  soap12Binding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE_FOR_RESOURCE, httpLocationTableForResource);
  return soap12Binding;
}
origin: org.apache.axis2/axis2-kernel

    : null;
if (axisBinding == null) {
  axisBinding = new AxisBinding();
  axisBinding.setName(bindingName);
origin: org.apache.axis2/axis2-kernel

    : null;
if (axisBinding == null) {
  axisBinding = new AxisBinding();
  axisBinding.setName(bindingName);
origin: apache/axis2-java

    : null;
if (axisBinding == null) {
  axisBinding = new AxisBinding();
  axisBinding.setName(bindingName);
origin: org.apache.axis2/axis2-kernel

      (AxisBinding) processedBindings.get(wsdl4jBinding.getQName()));
} else {
  AxisBinding axisBinding = new AxisBinding();
  axisBinding.setName(wsdl4jBinding.getQName());
  axisBinding.setParent(axisEndpoint);
origin: apache/axis2-java

    : null;
if (axisBinding == null) {
  axisBinding = new AxisBinding();
  axisBinding.setName(bindingName);
origin: apache/axis2-java

      (AxisBinding) processedBindings.get(wsdl4jBinding.getQName()));
} else {
  AxisBinding axisBinding = new AxisBinding();
  axisBinding.setName(wsdl4jBinding.getQName());
  axisBinding.setParent(axisEndpoint);
origin: org.apache.axis2/axis2-kernel

axisBinding = new AxisBinding();
axisBinding.setName(bindingName);
origin: apache/axis2-java

axisBinding = new AxisBinding();
axisBinding.setName(bindingName);
org.apache.axis2.descriptionAxisBinding<init>

Popular methods of AxisBinding

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

Popular in Java

  • Finding current android device location
  • getSharedPreferences (Context)
  • onRequestPermissionsResult (Fragment)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Collectors (java.util.stream)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Table (org.hibernate.mapping)
    A relational table
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now