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

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

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

origin: javaee/metro-jax-ws

protected boolean isRequestMimeMultipart() {
  for (TWSDLExtension extension: info.bindingOperation.getInput().extensions()) {
    if (extension.getClass().equals(MIMEMultipartRelated.class)) {
      return true;
    }
  }
  return false;
}
origin: javaee/metro-jax-ws

protected boolean isRequestMimeMultipart() {
  for (TWSDLExtension extension: info.bindingOperation.getInput().extensions()) {
    if (extension.getClass().equals(MIMEMultipartRelated.class)) {
      return true;
    }
  }
  return false;
}
origin: com.sun.xml.ws/jaxws-tools

protected boolean isRequestMimeMultipart() {
  for (TWSDLExtension extension: info.bindingOperation.getInput().extensions()) {
    if (extension.getClass().equals(MIMEMultipartRelated.class)) {
      return true;
    }
  }
  return false;
}
origin: org.glassfish.metro/webservices-tools

protected boolean isRequestMimeMultipart() {
  for (TWSDLExtension extension: info.bindingOperation.getInput().extensions()) {
    if (extension.getClass().equals(MIMEMultipartRelated.class)) {
      return true;
    }
  }
  return false;
}
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: 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: 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: org.glassfish.metro/webservices-tools

  mimeParts = getMimeContentParts(message, info.bindingOperation.getInput());
} else {
  mimeParts = getMimeContentParts(message, info.bindingOperation.getOutput());
origin: javaee/metro-jax-ws

  mimeParts = getMimeContentParts(message, info.bindingOperation.getInput());
} else {
  mimeParts = getMimeContentParts(message, info.bindingOperation.getOutput());
origin: com.sun.xml.ws/jaxws-tools

  mimeParts = getMimeContentParts(message, info.bindingOperation.getInput());
} else {
  mimeParts = getMimeContentParts(message, info.bindingOperation.getOutput());
origin: com.sun.xml.ws/jaxws-tools

TWSDLExtensible ext;
if (processRequest) {
  ext = info.bindingOperation.getInput();
} else {
  ext = info.bindingOperation.getOutput();
origin: javaee/metro-jax-ws

TWSDLExtensible ext;
if (processRequest) {
  ext = info.bindingOperation.getInput();
} else {
  ext = info.bindingOperation.getOutput();
origin: org.glassfish.metro/webservices-tools

TWSDLExtensible ext;
if (processRequest) {
  ext = info.bindingOperation.getInput();
} else {
  ext = info.bindingOperation.getOutput();
origin: com.sun.xml.ws/jaxws-tools

  parameters = new ArrayList<Parameter>();
List<MIMEContent> mimeContents = getMimeContents(info.bindingOperation.getInput(),
    getInputMessage(), paramName);
origin: javaee/metro-jax-ws

private List<MessagePart> getHeaderParts(BindingOperation bindingOperation, boolean isInput) {
  TWSDLExtensible ext;
  if (isInput) {
    ext = bindingOperation.getInput();
  } else {
    ext = bindingOperation.getOutput();
origin: com.sun.xml.ws/jaxws-tools

private List<MessagePart> getHeaderParts(BindingOperation bindingOperation, boolean isInput) {
  TWSDLExtensible ext;
  if (isInput) {
    ext = bindingOperation.getInput();
  } else {
    ext = bindingOperation.getOutput();
origin: org.glassfish.metro/webservices-tools

private List<MessagePart> getHeaderParts(BindingOperation bindingOperation, boolean isInput) {
  TWSDLExtensible ext;
  if (isInput) {
    ext = bindingOperation.getInput();
  } else {
    ext = bindingOperation.getOutput();
origin: javaee/metro-jax-ws

private List<MessagePart> getHeaderParts(BindingOperation bindingOperation, boolean isInput) {
  TWSDLExtensible ext;
  if (isInput) {
    ext = bindingOperation.getInput();
  } else {
    ext = bindingOperation.getOutput();
origin: com.sun.xml.ws/jaxws-tools

  request.addHeaderBlock(reqBlock);
} else if (ModelerUtils.isBoundToMimeContent(part)) {
  List<MIMEContent> mimeContents = getMimeContents(info.bindingOperation.getInput(),
      getInputMessage(), part.getName());
  jaxbReqType = getAttachmentType(mimeContents, part);
com.sun.tools.ws.wsdl.documentBindingOperationgetInput

Popular methods of BindingOperation

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

Popular in Java

  • Reactive rest calls using spring rest template
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
  • addToBackStack (FragmentTransaction)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top plugins for Android Studio
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