Tabnine Logo
WSDLModelerBase.getSOAPRequestBody
Code IndexAdd Tabnine to your IDE (free)

How to use
getSOAPRequestBody
method
in
com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase

Best Java code snippets using com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase.getSOAPRequestBody (Showing top 4 results out of 315)

origin: javaee/metro-jax-ws

/**
 * @param operation
 * @return true if operation has valid body parts
 */
protected boolean validateBodyParts(BindingOperation operation) {
  boolean isRequestResponse =
    info.portTypeOperation.getStyle()
    == OperationStyle.REQUEST_RESPONSE;
  List<MessagePart> inputParts = getMessageParts(getSOAPRequestBody(), getInputMessage(), true);
  if (!validateStyleAndPart(operation, inputParts)) {
    return false;
  }
  if(isRequestResponse){
    List<MessagePart> outputParts = getMessageParts(getSOAPResponseBody(), getOutputMessage(), false);
    if (!validateStyleAndPart(operation, outputParts)) {
      return false;
    }
  }
  return true;
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * @param operation
 * @return true if operation has valid body parts
 */
protected boolean validateBodyParts(BindingOperation operation) {
  boolean isRequestResponse =
    info.portTypeOperation.getStyle()
    == OperationStyle.REQUEST_RESPONSE;
  List<MessagePart> inputParts = getMessageParts(getSOAPRequestBody(), getInputMessage(), true);
  if (!validateStyleAndPart(operation, inputParts)) {
    return false;
  }
  if(isRequestResponse){
    List<MessagePart> outputParts = getMessageParts(getSOAPResponseBody(), getOutputMessage(), false);
    if (!validateStyleAndPart(operation, outputParts)) {
      return false;
    }
  }
  return true;
}
origin: org.glassfish.metro/webservices-tools

/**
 * @param operation
 * @return true if operation has valid body parts
 */
protected boolean validateBodyParts(BindingOperation operation) {
  boolean isRequestResponse =
    info.portTypeOperation.getStyle()
    == OperationStyle.REQUEST_RESPONSE;
  List<MessagePart> inputParts = getMessageParts(getSOAPRequestBody(), getInputMessage(), true);
  if (!validateStyleAndPart(operation, inputParts)) {
    return false;
  }
  if(isRequestResponse){
    List<MessagePart> outputParts = getMessageParts(getSOAPResponseBody(), getOutputMessage(), false);
    if (!validateStyleAndPart(operation, outputParts)) {
      return false;
    }
  }
  return true;
}
origin: javaee/metro-jax-ws

/**
 * @param operation
 * @return true if operation has valid body parts
 */
protected boolean validateBodyParts(BindingOperation operation) {
  boolean isRequestResponse =
    info.portTypeOperation.getStyle()
    == OperationStyle.REQUEST_RESPONSE;
  List<MessagePart> inputParts = getMessageParts(getSOAPRequestBody(), getInputMessage(), true);
  if (!validateStyleAndPart(operation, inputParts)) {
    return false;
  }
  if(isRequestResponse){
    List<MessagePart> outputParts = getMessageParts(getSOAPResponseBody(), getOutputMessage(), false);
    if (!validateStyleAndPart(operation, outputParts)) {
      return false;
    }
  }
  return true;
}
com.sun.tools.ws.processor.modeler.wsdlWSDLModelerBasegetSOAPRequestBody

Popular methods of WSDLModelerBase

  • error
  • getAnyExtensionOfType
  • getExtensionOfType
  • getInputMessage
  • getMessageParts
  • getMimeContentPart
  • getMimeContentPartName
  • getMimeContentParts
  • getMimeContentType
  • getMimeContents
  • getMimeParts
  • getOutputMessage
  • getMimeParts,
  • getOutputMessage,
  • getQNameOf,
  • getSOAPResponseBody,
  • isConflictingClassName,
  • isProvider,
  • isRootPart,
  • isStyleAndPartMatch,
  • validateMimeContentPartNames

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • putExtra (Intent)
  • getExternalFilesDir (Context)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Path (java.nio.file)
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • CodeWhisperer alternatives
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