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

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

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

origin: com.sun.xml.ws/jaxws-tools

/**
 *
 * @param port
 * @param wsdlPort
 */
protected void applyPortMethodCustomization(Port port, com.sun.tools.ws.wsdl.document.Port wsdlPort) {
  if (isProvider(wsdlPort)) {
    return;
  }
  JAXWSBinding jaxwsBinding = (JAXWSBinding)getExtensionOfType(wsdlPort, JAXWSBinding.class);
  String portMethodName = (jaxwsBinding != null)?((jaxwsBinding.getMethodName() != null)?jaxwsBinding.getMethodName().getName():null):null;
  if(portMethodName != null){
    port.setPortGetter(portMethodName);
  }else{
    portMethodName = Names.getPortName(port);
    portMethodName = BindingHelper.mangleNameToClassName(portMethodName);
    port.setPortGetter("get"+portMethodName);
  }
}
origin: javaee/metro-jax-ws

/**
 *
 * @param port
 * @param wsdlPort
 */
protected void applyPortMethodCustomization(Port port, com.sun.tools.ws.wsdl.document.Port wsdlPort) {
  if (isProvider(wsdlPort)) {
    return;
  }
  JAXWSBinding jaxwsBinding = (JAXWSBinding)getExtensionOfType(wsdlPort, JAXWSBinding.class);
  String portMethodName = (jaxwsBinding != null)?((jaxwsBinding.getMethodName() != null)?jaxwsBinding.getMethodName().getName():null):null;
  if(portMethodName != null){
    port.setPortGetter(portMethodName);
  }else{
    portMethodName = Names.getPortName(port);
    portMethodName = BindingHelper.mangleNameToClassName(portMethodName);
    port.setPortGetter("get"+portMethodName);
  }
}
origin: org.glassfish.metro/webservices-tools

/**
 *
 * @param port
 * @param wsdlPort
 */
protected void applyPortMethodCustomization(Port port, com.sun.tools.ws.wsdl.document.Port wsdlPort) {
  if (isProvider(wsdlPort)) {
    return;
  }
  JAXWSBinding jaxwsBinding = (JAXWSBinding)getExtensionOfType(wsdlPort, JAXWSBinding.class);
  String portMethodName = (jaxwsBinding != null)?((jaxwsBinding.getMethodName() != null)?jaxwsBinding.getMethodName().getName():null):null;
  if(portMethodName != null){
    port.setPortGetter(portMethodName);
  }else{
    portMethodName = Names.getPortName(port);
    portMethodName = BindingHelper.mangleNameToClassName(portMethodName);
    port.setPortGetter("get"+portMethodName);
  }
}
origin: javaee/metro-jax-ws

/**
 *
 * @param port
 * @param wsdlPort
 */
protected void applyPortMethodCustomization(Port port, com.sun.tools.ws.wsdl.document.Port wsdlPort) {
  if (isProvider(wsdlPort)) {
    return;
  }
  JAXWSBinding jaxwsBinding = (JAXWSBinding)getExtensionOfType(wsdlPort, JAXWSBinding.class);
  String portMethodName = (jaxwsBinding != null)?((jaxwsBinding.getMethodName() != null)?jaxwsBinding.getMethodName().getName():null):null;
  if(portMethodName != null){
    port.setPortGetter(portMethodName);
  }else{
    portMethodName = Names.getPortName(port);
    portMethodName = BindingHelper.mangleNameToClassName(portMethodName);
    port.setPortGetter("get"+portMethodName);
  }
}
com.sun.tools.ws.processor.modeler.wsdlWSDLModelerBaseisProvider

Popular methods of WSDLModelerBase

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • runOnUiThread (Activity)
  • findViewById (Activity)
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JTextField (javax.swing)
  • Option (scala)
  • Github Copilot alternatives
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