Codota Logo
PseudoSchemaBuilder.getOperationName
Code IndexAdd Codota 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)

  • Common ways to obtain PseudoSchemaBuilder
private void myMethod () {
PseudoSchemaBuilder p =
  • Codota IconWSDLDocument _wsdl;new PseudoSchemaBuilder(_wsdl)
  • Smart code suggestions by Codota
}
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
  • requestLocationUpdates (LocationManager)
  • putExtra (Intent)
  • getSystemService (Context)
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • JComboBox (javax.swing)
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now