Tabnine Logo
Input
Code IndexAdd Tabnine to your IDE (free)

How to use
Input
in
com.sun.tools.ws.wsdl.document

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

origin: org.glassfish.metro/webservices-tools

public QName getWSDLElementName() {
  return getElementName();
}
origin: com.sun.xml.ws/jaxws-tools

public String getUniqueKey() {
  if (_uniqueKey == null) {
    StringBuffer sb = new StringBuffer();
    sb.append(_name);
    sb.append(' ');
    if (_input != null) {
      sb.append(_input.getName());
    } else {
      sb.append(_name);
      if (_style == OperationStyle.REQUEST_RESPONSE) {
        sb.append("Request");
      } else if (_style == OperationStyle.SOLICIT_RESPONSE) {
        sb.append("Response");
      }
    }
    sb.append(' ');
    if (_output != null) {
      sb.append(_output.getName());
    } else {
      sb.append(_name);
      if (_style == OperationStyle.SOLICIT_RESPONSE) {
        sb.append("Solicit");
      } else if (_style == OperationStyle.REQUEST_RESPONSE) {
        sb.append("Response");
      }
    }
    _uniqueKey = sb.toString();
  }
  return _uniqueKey;
}
origin: com.sun.xml.ws/jaxws-tools

protected com.sun.tools.ws.wsdl.document.Message getInputMessage() {
  return info.portTypeOperation.getInput().resolveMessage(info.document);
}
origin: com.sun.xml.ws/jaxws-tools

Input input = new Input(forest.locatorTable.getStartLocation(e2), errReceiver);
input.setParent(operation);
String messageAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_MESSAGE);
input.setMessage(context.translateQualifiedName(context.getLocation(e2), messageAttr));
String nameAttr =
  XmlUtil.getAttributeOrNull(e2, Constants.ATTR_NAME);
input.setName(nameAttr);
operation.setInput(input);
gotInput = true;
    input.setDocumentation(getDocumentationFor(e3));
  } else {
    errReceiver.error(forest.locatorTable.getStartLocation(e3), WsdlMessages.PARSING_INVALID_ELEMENT(e3.getTagName(),
origin: com.sun.xml.ws/jaxws-tools

@Override
public boolean handleInputExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) {
  String actionValue = XmlUtil.getAttributeNSOrNull(e, WSAM_ACTION_QNAME);
  if (actionValue == null || actionValue.equals("")) {
    return warnEmptyAction(parent, context.getLocation(e));
  }
  ((Input)parent).setAction(actionValue);
  return true;
}
origin: com.sun.xml.ws/jaxws-tools

public void validateThis() {
  if (_message == null) {
    errorReceiver.error(getLocator(), WsdlMessages.VALIDATION_MISSING_REQUIRED_ATTRIBUTE("name", "wsdl:message"));
    throw new AbortException();            
  }
}
origin: org.glassfish.metro/webservices-tools

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (Fault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
origin: com.sun.xml.ws/jaxws-tools

if (o.getInput().getAction() != null && !o.getInput().getAction().equals("")) {
  actionAnn.param("input", o.getInput().getAction());
origin: org.glassfish.metro/webservices-tools

Input input = new Input(forest.locatorTable.getStartLocation(e2), errReceiver);
input.setParent(operation);
String messageAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_MESSAGE);
input.setMessage(context.translateQualifiedName(context.getLocation(e2), messageAttr));
String nameAttr =
  XmlUtil.getAttributeOrNull(e2, Constants.ATTR_NAME);
input.setName(nameAttr);
operation.setInput(input);
gotInput = true;
    input.setDocumentation(getDocumentationFor(e3));
  } else {
    errReceiver.error(forest.locatorTable.getStartLocation(e3), WsdlMessages.PARSING_INVALID_ELEMENT(e3.getTagName(),
origin: org.glassfish.metro/webservices-tools

@Override
public boolean handleInputExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) {
  String actionValue = XmlUtil.getAttributeNSOrNull(e, WSAM_ACTION_QNAME);
  if (actionValue == null || actionValue.equals("")) {
    return warnEmptyAction(parent, context.getLocation(e));
  }
  ((Input)parent).setAction(actionValue);
  return true;
}
origin: org.glassfish.metro/webservices-tools

public void validateThis() {
  if (_message == null) {
    errorReceiver.error(getLocator(), WsdlMessages.VALIDATION_MISSING_REQUIRED_ATTRIBUTE("name", "wsdl:message"));
    throw new AbortException();            
  }
}
origin: com.sun.xml.ws/jaxws-tools

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (Fault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
origin: org.glassfish.metro/webservices-tools

if (o.getInput().getAction() != null && !o.getInput().getAction().equals("")) {
  actionAnn.param("input", o.getInput().getAction());
origin: javaee/metro-jax-ws

Input input = new Input(forest.locatorTable.getStartLocation(e2), errReceiver);
input.setParent(operation);
String messageAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_MESSAGE);
input.setMessage(context.translateQualifiedName(context.getLocation(e2), messageAttr));
String nameAttr =
  XmlUtil.getAttributeOrNull(e2, Constants.ATTR_NAME);
input.setName(nameAttr);
operation.setInput(input);
gotInput = true;
    input.setDocumentation(getDocumentationFor(e3));
  } else {
    errReceiver.error(forest.locatorTable.getStartLocation(e3), WsdlMessages.PARSING_INVALID_ELEMENT(e3.getTagName(),
origin: javaee/metro-jax-ws

@Override
public boolean handleInputExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) {
  String actionValue = XmlUtil.getAttributeNSOrNull(e, WSAM_ACTION_QNAME);
  if (actionValue == null || actionValue.equals("")) {
    return warnEmptyAction(parent, context.getLocation(e));
  }
  ((Input)parent).setAction(actionValue);
  return true;
}
origin: com.sun.xml.ws/jaxws-tools

public QName getWSDLElementName() {
  return getElementName();
}
origin: org.glassfish.metro/webservices-tools

public String getUniqueKey() {
  if (_uniqueKey == null) {
    StringBuffer sb = new StringBuffer();
    sb.append(_name);
    sb.append(' ');
    if (_input != null) {
      sb.append(_input.getName());
    } else {
      sb.append(_name);
      if (_style == OperationStyle.REQUEST_RESPONSE) {
        sb.append("Request");
      } else if (_style == OperationStyle.SOLICIT_RESPONSE) {
        sb.append("Response");
      }
    }
    sb.append(' ');
    if (_output != null) {
      sb.append(_output.getName());
    } else {
      sb.append(_name);
      if (_style == OperationStyle.SOLICIT_RESPONSE) {
        sb.append("Solicit");
      } else if (_style == OperationStyle.REQUEST_RESPONSE) {
        sb.append("Response");
      }
    }
    _uniqueKey = sb.toString();
  }
  return _uniqueKey;
}
origin: javaee/metro-jax-ws

public void validateThis() {
  if (_message == null) {
    errorReceiver.error(getLocator(), WsdlMessages.VALIDATION_MISSING_REQUIRED_ATTRIBUTE("name", "wsdl:message"));
    throw new AbortException();            
  }
}
origin: javaee/metro-jax-ws

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (Fault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
origin: javaee/metro-jax-ws

protected com.sun.tools.ws.wsdl.document.Message getInputMessage() {
  return info.portTypeOperation.getInput().resolveMessage(info.document);
}
com.sun.tools.ws.wsdl.documentInput

Javadoc

Entity corresponding to the "input" child element of a port type operation.

Most used methods

  • <init>
  • accept
  • getAction
  • getElementName
  • getLocator
  • getName
  • resolveMessage
  • setAction
  • setDocumentation
  • setMessage
  • setName
  • setParent
  • setName,
  • setParent

Popular in Java

  • Parsing JSON documents to java classes using gson
  • compareTo (BigDecimal)
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • JTable (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