congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PseudoSchemaBuilder.getOperationName
Code IndexAdd Tabnine to your IDE (free)

How to use
getOperationName
method
in
com.sun.tools.ws.processor.modeler.wsdl.PseudoSchemaBuilder

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

origin: javaee/metro-jax-ws

/**
 * @param portType
 * @param operation
 * @param bindingOperation
 */
private void buildAsync(PortType portType, Operation operation, BindingOperation bindingOperation) {
  String operationName = getCustomizedOperationName(operation);//operation.getName();
  if(operationName == null)
    return;
  Message outputMessage = null;
  if(operation.getOutput() != null)
    outputMessage = operation.getOutput().resolveMessage(wsdlDocument);
  if(outputMessage != null){
    List<MessagePart> allParts = new ArrayList<MessagePart>(outputMessage.getParts());
    if(options != null && options.additionalHeaders) {
      List<MessagePart> addtionalHeaderParts = wsdlModeler.getAdditionHeaderParts(bindingOperation, outputMessage, false);
      allParts.addAll(addtionalHeaderParts);
    }
    if(allParts.size() > 1)
      build(getOperationName(operationName), allParts);
  }
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * @param portType
 * @param operation
 * @param bindingOperation
 */
private void buildAsync(PortType portType, Operation operation, BindingOperation bindingOperation) {
  String operationName = getCustomizedOperationName(operation);//operation.getName();
  if(operationName == null)
    return;
  Message outputMessage = null;
  if(operation.getOutput() != null)
    outputMessage = operation.getOutput().resolveMessage(wsdlDocument);
  if(outputMessage != null){
    List<MessagePart> allParts = new ArrayList<MessagePart>(outputMessage.getParts());
    if(options != null && options.additionalHeaders) {
      List<MessagePart> addtionalHeaderParts = wsdlModeler.getAdditionHeaderParts(bindingOperation, outputMessage, false);
      allParts.addAll(addtionalHeaderParts);
    }
    if(allParts.size() > 1)
      build(getOperationName(operationName), allParts);
  }
}
origin: org.glassfish.metro/webservices-tools

/**
 * @param portType
 * @param operation
 * @param bindingOperation
 */
private void buildAsync(PortType portType, Operation operation, BindingOperation bindingOperation) {
  String operationName = getCustomizedOperationName(operation);//operation.getName();
  if(operationName == null)
    return;
  Message outputMessage = null;
  if(operation.getOutput() != null)
    outputMessage = operation.getOutput().resolveMessage(wsdlDocument);
  if(outputMessage != null){
    List<MessagePart> allParts = new ArrayList<MessagePart>(outputMessage.getParts());
    if(options != null && options.additionalHeaders) {
      List<MessagePart> addtionalHeaderParts = wsdlModeler.getAdditionHeaderParts(bindingOperation, outputMessage, false);
      allParts.addAll(addtionalHeaderParts);
    }
    if(allParts.size() > 1)
      build(getOperationName(operationName), allParts);
  }
}
origin: javaee/metro-jax-ws

/**
 * @param portType
 * @param operation
 * @param bindingOperation
 */
private void buildAsync(PortType portType, Operation operation, BindingOperation bindingOperation) {
  String operationName = getCustomizedOperationName(operation);//operation.getName();
  if(operationName == null)
    return;
  Message outputMessage = null;
  if(operation.getOutput() != null)
    outputMessage = operation.getOutput().resolveMessage(wsdlDocument);
  if(outputMessage != null){
    List<MessagePart> allParts = new ArrayList<MessagePart>(outputMessage.getParts());
    if(options != null && options.additionalHeaders) {
      List<MessagePart> addtionalHeaderParts = wsdlModeler.getAdditionHeaderParts(bindingOperation, outputMessage, false);
      allParts.addAll(addtionalHeaderParts);
    }
    if(allParts.size() > 1)
      build(getOperationName(operationName), allParts);
  }
}
com.sun.tools.ws.processor.modeler.wsdlPseudoSchemaBuildergetOperationName

Popular methods of PseudoSchemaBuilder

  • <init>
  • build
  • buildAsync
  • getCustomizedOperationName
  • getUTF8Bytes
  • print
  • writeImports

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • addToBackStack (FragmentTransaction)
  • startActivity (Activity)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JList (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now