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

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

Best Java code snippets using com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase.getSOAPResponseBody (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.wsdlWSDLModelerBasegetSOAPResponseBody

Popular methods of WSDLModelerBase

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

Popular in Java

  • Creating JSON documents from java classes using gson
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • getContentResolver (Context)
  • Kernel (java.awt.image)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Top Sublime Text 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