Tabnine Logo
WSDLUtil.getPartQName
Code IndexAdd Tabnine to your IDE (free)

How to use
getPartQName
method
in
org.apache.axis2.wsdl.WSDLUtil

Best Java code snippets using org.apache.axis2.wsdl.WSDLUtil.getPartQName (Showing top 16 results out of 315)

origin: org.apache.axis2/axis2-adb-codegen

QName partQName = WSDLUtil.getPartQName(opName,
    qnameSuffix,
    partName);
origin: apache/axis2-java

QName partQName = WSDLUtil.getPartQName(opName,
    qnameSuffix,
    partName);
origin: apache/axis2-java

private void processAttributes(XmlSchemaComplexType complexType,
                AxisMessage message,
                List partNameList,
                String qnameSuffix) {
  QName opName = message.getAxisOperation().getName();
  XmlSchemaAttribute xmlSchemaAttribute;
  for (XmlSchemaObject item : complexType.getAttributes()) {
    if (item instanceof XmlSchemaAttribute) {
      xmlSchemaAttribute = (XmlSchemaAttribute) item;
      String partName = xmlSchemaAttribute.getName();
      partNameList.add(
          WSDLUtil.getPartQName(opName.getLocalPart(),
              qnameSuffix,
              partName));
    }
  }
}
origin: org.apache.axis2/axis2-jibx

QName partqname = WSDLUtil.getPartQName(opName.getLocalPart(),
                    WSDLConstants.INPUT_PART_QNAME_SUFFIX,
                    javaname);
origin: apache/axis2-java

QName partqname = WSDLUtil.getPartQName(opName.getLocalPart(),
                    WSDLConstants.INPUT_PART_QNAME_SUFFIX,
                    javaname);
origin: apache/axis2-java

WSDLUtil.getPartQName(opName.getLocalPart(),
    qnameSuffix,
    partName));
origin: apache/axis2-java

WSDLUtil.getPartQName(opName.getLocalPart(),
    qnameSuffix,
    partName));
WSDLUtil.getPartQName(opName.getLocalPart(),
    qnameSuffix,
    Constants.ANY_ELEMENT_FIELD_NAME));
origin: org.apache.axis2/axis2-jaxbri

WSDLUtil.getPartQName(op.getName().getLocalPart(),
           WSDLConstants.INPUT_PART_QNAME_SUFFIX,
           elementProperty.elementName().getLocalPart());
WSDLUtil.getPartQName(op.getName().getLocalPart(),
           WSDLConstants.OUTPUT_PART_QNAME_SUFFIX,
           elementProperty.elementName().getLocalPart());
origin: apache/axis2-java

for (Property elementProperty : mapping.getWrapperStyleDrilldown()) {
  QName partQName =
        WSDLUtil.getPartQName(op.getName().getLocalPart(),
                   WSDLConstants.INPUT_PART_QNAME_SUFFIX,
                   elementProperty.elementName().getLocalPart());
for (Property elementProperty : mapping.getWrapperStyleDrilldown()) {
  QName partQName =
        WSDLUtil.getPartQName(op.getName().getLocalPart(),
                   WSDLConstants.OUTPUT_PART_QNAME_SUFFIX,
                   elementProperty.elementName().getLocalPart());
origin: org.apache.axis2/axis2-adb-codegen

  processXMLSchemaComplexType(schemaType, mapper, opName, schemaMap, qnameSuffix);
} else if ((schemaTypeQname != null) && basicTypeMap.getTypeMap().containsKey(schemaTypeQname)){
  QName partQName = WSDLUtil.getPartQName(opName,
      qnameSuffix,
      message.getElementQName().getLocalPart());
origin: apache/axis2-java

  processXMLSchemaComplexType(schemaType, mapper, opName, schemaMap, qnameSuffix);
} else if ((schemaTypeQname != null) && basicTypeMap.getTypeMap().containsKey(schemaTypeQname)){
  QName partQName = WSDLUtil.getPartQName(opName,
      qnameSuffix,
      message.getElementQName().getLocalPart());
origin: apache/axis2-java

  ((schemaTypeQname != null) && (schemaTypeQname.equals(new QName("http://www.w3.org/2001/XMLSchema", "anyType")))) ) {
QName opName = message.getAxisOperation().getName();
partNameList.add(WSDLUtil.getPartQName(opName.getLocalPart(),
    qnameSuffix,
    schemaElement.getQName().getLocalPart()));
origin: org.apache.axis2/axis2-xmlbeans

WSDLUtil.getPartQName(op.getName().getLocalPart(),
           WSDLConstants.INPUT_PART_QNAME_SUFFIX,
           elementProperty
WSDLUtil.getPartQName(op.getName().getLocalPart(),
           WSDLConstants.OUTPUT_PART_QNAME_SUFFIX,
           elementProperty
origin: org.apache.axis2/axis2-adb-codegen

boolean isArray = xmlSchemaAny.getMaxOccurs() > 1;
QName partQName = WSDLUtil.getPartQName(opName,
    qnameSuffix,
    Constants.ANY_ELEMENT_FIELD_NAME);
origin: apache/axis2-java

WSDLUtil.getPartQName(op.getName().getLocalPart(),
           WSDLConstants.INPUT_PART_QNAME_SUFFIX,
           elementProperty
WSDLUtil.getPartQName(op.getName().getLocalPart(),
           WSDLConstants.OUTPUT_PART_QNAME_SUFFIX,
           elementProperty
origin: apache/axis2-java

boolean isArray = xmlSchemaAny.getMaxOccurs() > 1;
QName partQName = WSDLUtil.getPartQName(opName,
    qnameSuffix,
    Constants.ANY_ELEMENT_FIELD_NAME);
org.apache.axis2.wsdlWSDLUtilgetPartQName

Javadoc

part names are not unique across messages. Hence we need some way of making the part name a unique one (due to the fact that the type mapper is a global list of types). The seemingly best way to do that is to specify a namespace for the part QName reference which is stored in the list. This part qname is temporary and should not be used with it's namespace URI (which happened to be the operation name) with _input (or a similar suffix) attached to it

Popular methods of WSDLUtil

  • isInputPresentForMEP
    returns whether the given mep uri is one of the input meps
  • isOutputPresentForMEP
    returns whether the given mep URI is one of the output meps
  • newWSDLReaderWithPopulatedExtensionRegistry
    Creates a new WSDLReader and configures it with a WSDLFactory#newPopulatedExtensionRegistry() if it
  • registerDefaultExtensionAttributeTypes
    Registers default extension attributes types to given extensionRegistry instance. The method config
  • getConstantFromHTTPLocation
  • getConstantFromHTTPLocationForResource
  • getEndpointName
    This method will return the EndPointName for a service with give transport protocol ex : StudentServ

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • Menu (java.awt)
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • JComboBox (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • 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