Tabnine Logo
Binding.resolvePortType
Code IndexAdd Tabnine to your IDE (free)

How to use
resolvePortType
method
in
com.sun.tools.ws.wsdl.document.Binding

Best Java code snippets using com.sun.tools.ws.wsdl.document.Binding.resolvePortType (Showing top 20 results out of 315)

origin: javaee/metro-jax-ws

PortType portType = binding.resolvePortType(wsdlDocument);
origin: com.sun.xml.ws/jaxws-tools

PortType portType = binding.resolvePortType(wsdlDocument);
origin: org.glassfish.metro/webservices-tools

PortType portType = binding.resolvePortType(wsdlDocument);
origin: javaee/metro-jax-ws

PortType portType = binding.resolvePortType(wsdlDocument);
origin: org.glassfish.metro/webservices-tools

private boolean getWrapperStyleCustomization() {
  //first we look into wsdl:portType/wsdl:operation
  com.sun.tools.ws.wsdl.document.Operation portTypeOperation = info.portTypeOperation;
  JAXWSBinding jaxwsBinding = (JAXWSBinding) getExtensionOfType(portTypeOperation, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then into wsdl:portType        
  PortType portType = info.port.resolveBinding(document).resolvePortType(document);
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(portType, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then wsdl:definitions
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(document.getDefinitions(), JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  return true;
}
origin: javaee/metro-jax-ws

private boolean getWrapperStyleCustomization() {
  //first we look into wsdl:portType/wsdl:operation
  com.sun.tools.ws.wsdl.document.Operation portTypeOperation = info.portTypeOperation;
  JAXWSBinding jaxwsBinding = (JAXWSBinding) getExtensionOfType(portTypeOperation, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then into wsdl:portType        
  PortType portType = info.port.resolveBinding(document).resolvePortType(document);
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(portType, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then wsdl:definitions
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(document.getDefinitions(), JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  return true;
}
origin: javaee/metro-jax-ws

private boolean getWrapperStyleCustomization() {
  //first we look into wsdl:portType/wsdl:operation
  com.sun.tools.ws.wsdl.document.Operation portTypeOperation = info.portTypeOperation;
  JAXWSBinding jaxwsBinding = (JAXWSBinding) getExtensionOfType(portTypeOperation, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then into wsdl:portType        
  PortType portType = info.port.resolveBinding(document).resolvePortType(document);
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(portType, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then wsdl:definitions
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(document.getDefinitions(), JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  return true;
}
origin: com.sun.xml.ws/jaxws-tools

private boolean getWrapperStyleCustomization() {
  //first we look into wsdl:portType/wsdl:operation
  com.sun.tools.ws.wsdl.document.Operation portTypeOperation = info.portTypeOperation;
  JAXWSBinding jaxwsBinding = (JAXWSBinding) getExtensionOfType(portTypeOperation, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then into wsdl:portType        
  PortType portType = info.port.resolveBinding(document).resolvePortType(document);
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(portType, JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  //then wsdl:definitions
  jaxwsBinding = (JAXWSBinding) getExtensionOfType(document.getDefinitions(), JAXWSBinding.class);
  if (jaxwsBinding != null) {
    Boolean isWrappable = jaxwsBinding.isEnableWrapperStyle();
    if (isWrappable != null) {
      return isWrappable;
    }
  }
  return true;
}
origin: org.glassfish.metro/webservices-tools

PortType portType = binding.resolvePortType(document);
  PortType pt = binding.resolvePortType(document);
  String jd = (pt.getDocumentation() != null) ? pt.getDocumentation().getContent() : null;
  port.getJavaInterface().setJavaDoc(jd);
applyWrapperStyleCustomization(port, binding.resolvePortType(document));
origin: org.glassfish.metro/webservices-tools

  } else {
    error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
        info.port.resolveBinding(document).resolvePortType(document).getName()));
PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  warning(portType, "Can not generate Async methods for non-soap binding!");
origin: com.sun.xml.ws/jaxws-tools

  } else {
    error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
        info.port.resolveBinding(document).resolvePortType(document).getName()));
PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  warning(portType, "Can not generate Async methods for non-soap binding!");
origin: javaee/metro-jax-ws

  } else {
    error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
        info.port.resolveBinding(document).resolvePortType(document).getName()));
PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  warning(portType, "Can not generate Async methods for non-soap binding!");
origin: javaee/metro-jax-ws

  } else {
    error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
        info.port.resolveBinding(document).resolvePortType(document).getName()));
PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  warning(portType, "Can not generate Async methods for non-soap binding!");
origin: com.sun.xml.ws/jaxws-tools

PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  addAsyncOperations(info.operation, styleAndUse);
origin: javaee/metro-jax-ws

PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  addAsyncOperations(info.operation, styleAndUse);
origin: org.glassfish.metro/webservices-tools

PortType portType = binding.resolvePortType(document);
if (isAsync(portType, info.portTypeOperation)) {
  addAsyncOperations(info.operation, styleAndUse);
origin: com.sun.xml.ws/jaxws-tools

} else {
  error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
      info.port.resolveBinding(document).resolvePortType(document).getName()));
origin: javaee/metro-jax-ws

} else {
  error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
      info.port.resolveBinding(document).resolvePortType(document).getName()));
origin: org.glassfish.metro/webservices-tools

} else {
  error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
      info.port.resolveBinding(document).resolvePortType(document).getName()));
origin: javaee/metro-jax-ws

} else {
  error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
      info.port.resolveBinding(document).resolvePortType(document).getName()));
com.sun.tools.ws.wsdl.documentBindingresolvePortType

Popular methods of Binding

  • <init>
  • accept
  • add
  • extensions
  • failValidation
  • getDefining
  • getElementName
  • getLocator
  • getName
  • getNamespaceURI
  • operations
  • setDocumentation
  • operations,
  • setDocumentation,
  • setName,
  • setPortType

Popular in Java

  • Reading from database using SQL prepared statement
  • runOnUiThread (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • addToBackStack (FragmentTransaction)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JComboBox (javax.swing)
  • 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