Tabnine Logo
BindingOperation.getName
Code IndexAdd Tabnine to your IDE (free)

How to use
getName
method
in
com.sun.tools.ws.wsdl.document.BindingOperation

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

origin: javaee/metro-jax-ws

@Override
public String getNameValue() {
  return getName();
}
origin: com.sun.xml.ws/jaxws-tools

@Override
public String getNameValue() {
  return getName();
}
origin: javaee/metro-jax-ws

@Override
public String getNameValue() {
  return getName();
}
origin: org.glassfish.metro/webservices-tools

@Override
public String getNameValue() {
  return getName();
}
origin: org.glassfish.metro/webservices-tools

protected String getRequestNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: javaee/metro-jax-ws

protected String getRequestNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: javaee/metro-jax-ws

protected String getResponseNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: javaee/metro-jax-ws

protected String getRequestNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: com.sun.xml.ws/jaxws-tools

protected String getResponseNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: com.sun.xml.ws/jaxws-tools

protected String getRequestNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: javaee/metro-jax-ws

protected String getResponseNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: org.glassfish.metro/webservices-tools

protected String getResponseNamespaceURI(SOAPBody body) {
  String namespaceURI = body.getNamespace();
  if (namespaceURI == null) {
    if(options.isExtensionMode()){
      return info.modelPort.getName().getNamespaceURI();
    }
    // the WSDL document is invalid
    // at least, that's my interpretation of section 3.5 of the WSDL 1.1 spec!
    error(body, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_SOAP_BODY_MISSING_NAMESPACE(info.bindingOperation.getName()));
  }
  return namespaceURI;
}
origin: org.glassfish.metro/webservices-tools

protected SOAPBody getSOAPRequestBody() {
  SOAPBody requestBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getInput(),
      SOAPBody.class);
  if (requestBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getInput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return requestBody;
}
origin: javaee/metro-jax-ws

protected SOAPBody getSOAPResponseBody() {
  SOAPBody responseBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getOutput(),
      SOAPBody.class);
  if (responseBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getOutput(),  ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return responseBody;
}
origin: javaee/metro-jax-ws

protected SOAPBody getSOAPResponseBody() {
  SOAPBody responseBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getOutput(),
      SOAPBody.class);
  if (responseBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getOutput(),  ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return responseBody;
}
origin: com.sun.xml.ws/jaxws-tools

protected SOAPBody getSOAPRequestBody() {
  SOAPBody requestBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getInput(),
      SOAPBody.class);
  if (requestBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getInput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return requestBody;
}
origin: javaee/metro-jax-ws

protected SOAPBody getSOAPRequestBody() {
  SOAPBody requestBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getInput(),
      SOAPBody.class);
  if (requestBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getInput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return requestBody;
}
origin: com.sun.xml.ws/jaxws-tools

protected SOAPBody getSOAPResponseBody() {
  SOAPBody responseBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getOutput(),
      SOAPBody.class);
  if (responseBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getOutput(),  ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return responseBody;
}
origin: org.glassfish.metro/webservices-tools

protected SOAPBody getSOAPResponseBody() {
  SOAPBody responseBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getOutput(),
      SOAPBody.class);
  if (responseBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getOutput(),  ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_OUTPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return responseBody;
}
origin: javaee/metro-jax-ws

protected SOAPBody getSOAPRequestBody() {
  SOAPBody requestBody =
    (SOAPBody)getAnyExtensionOfType(info.bindingOperation.getInput(),
      SOAPBody.class);
  if (requestBody == null) {
    // the WSDL document is invalid
    error(info.bindingOperation.getInput(), ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
  }
  return requestBody;
}
com.sun.tools.ws.wsdl.documentBindingOperationgetName

Popular methods of BindingOperation

  • <init>
  • accept
  • addExtension
  • addFault
  • failValidation
  • faults
  • getElementName
  • getInput
  • getOutput
  • setDocumentation
  • setInput
  • setName
  • setInput,
  • setName,
  • setOutput,
  • setStyle

Popular in Java

  • Reactive rest calls using spring rest template
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setRequestProperty (URLConnection)
  • runOnUiThread (Activity)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Top 12 Jupyter Notebook extensions
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