Tabnine Logo
AxisBinding.setName
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using org.apache.axis2.description.AxisBinding.setName (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

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

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

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

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

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

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

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

axisBinding.setName(bindingName);
org.apache.axis2.descriptionAxisBindingsetName

Popular methods of AxisBinding

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

Popular in Java

  • Making http requests using okhttp
  • getResourceAsStream (ClassLoader)
  • onCreateOptionsMenu (Activity)
  • findViewById (Activity)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Runner (org.openjdk.jmh.runner)
  • 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