congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
WSDLModelerBase.validateStyleAndPart
Code IndexAdd Tabnine to your IDE (free)

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

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

Popular methods of WSDLModelerBase

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

Popular in Java

  • Creating JSON documents from java classes using gson
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • 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 (
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • From CI to AI: The AI layer in your organization
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