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

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

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

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

public void validateThis() {
  if (_name == null) {
    failValidation("validation.missingRequiredAttribute", "name");
  }
}
origin: com.sun.xml.ws/jaxws-tools

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

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

context.push();
context.registerNamespaces(e2);
BindingFault fault = new BindingFault(forest.locatorTable.getStartLocation(e2));
String nameAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_NAME);
fault.setName(nameAttr);
operation.addFault(fault);
gotFault = true;
    if(fault.getDocumentation() == null)
      fault.setDocumentation(getDocumentationFor(e3));
  } else {
origin: javaee/metro-jax-ws

public String getNamespaceURI() {
  return getParent().getNamespaceURI();
}
origin: org.glassfish.metro/webservices-tools

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  //bug fix: 4947340, extensions should be the first element
  _helper.accept(visitor);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (BindingFault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
origin: org.glassfish.metro/webservices-tools

context.push();
context.registerNamespaces(e2);
BindingFault fault = new BindingFault(forest.locatorTable.getStartLocation(e2));
String nameAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_NAME);
fault.setName(nameAttr);
operation.addFault(fault);
gotFault = true;
    if(fault.getDocumentation() == null)
      fault.setDocumentation(getDocumentationFor(e3));
  } else {
origin: com.sun.xml.ws/jaxws-tools

public String getNamespaceURI() {
  return getParent().getNamespaceURI();
}
origin: javaee/metro-jax-ws

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  //bug fix: 4947340, extensions should be the first element
  _helper.accept(visitor);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (BindingFault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
origin: javaee/metro-jax-ws

context.push();
context.registerNamespaces(e2);
BindingFault fault = new BindingFault(forest.locatorTable.getStartLocation(e2));
String nameAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_NAME);
fault.setName(nameAttr);
operation.addFault(fault);
gotFault = true;
    if(fault.getDocumentation() == null)
      fault.setDocumentation(getDocumentationFor(e3));
  } else {
origin: org.glassfish.metro/webservices-tools

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

public void validateThis() {
  if (_name == null) {
    failValidation("validation.missingRequiredAttribute", "name");
  }
}
origin: javaee/metro-jax-ws

public String getNamespaceURI() {
  return getParent().getNamespaceURI();
}
origin: com.sun.xml.ws/jaxws-tools

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  //bug fix: 4947340, extensions should be the first element
  _helper.accept(visitor);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (BindingFault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
origin: org.glassfish.metro/webservices-tools

public QName getWSDLElementName() {
  return getElementName();
}
origin: javaee/metro-jax-ws

context.push();
context.registerNamespaces(e2);
BindingFault fault = new BindingFault(forest.locatorTable.getStartLocation(e2));
String nameAttr =
  Util.getRequiredAttribute(e2, Constants.ATTR_NAME);
fault.setName(nameAttr);
operation.addFault(fault);
gotFault = true;
    if(fault.getDocumentation() == null)
      fault.setDocumentation(getDocumentationFor(e3));
  } else {
origin: javaee/metro-jax-ws

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

public void validateThis() {
  if (_name == null) {
    failValidation("validation.missingRequiredAttribute", "name");
  }
}
origin: org.glassfish.metro/webservices-tools

public String getNamespaceURI() {
  return getParent().getNamespaceURI();
}
origin: javaee/metro-jax-ws

public void accept(WSDLDocumentVisitor visitor) throws Exception {
  visitor.preVisit(this);
  //bug fix: 4947340, extensions should be the first element
  _helper.accept(visitor);
  if (_input != null) {
    _input.accept(visitor);
  }
  if (_output != null) {
    _output.accept(visitor);
  }
  for (BindingFault _fault : _faults) {
    _fault.accept(visitor);
  }
  visitor.postVisit(this);
}
com.sun.tools.ws.wsdl.documentBindingFault

Javadoc

Entity corresponding to the "fault" child element of a binding operation.

Most used methods

  • <init>
  • accept
  • failValidation
  • getDocumentation
  • getElementName
  • getName
  • getParent
  • setDocumentation
  • setName

Popular in Java

  • Start an intent from android
  • setScale (BigDecimal)
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (Timer)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Reference (javax.naming)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Best IntelliJ 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