Package org.cybergarage.xml

Examples of org.cybergarage.xml.Node


    return envNode.getNodeEndsWith(SOAP.BODY);
  }

  public Node getMethodResponseNode(String name)
  {
    Node bodyNode = getBodyNode();
    if (bodyNode == null)
      return null;
    String methodResName = name + SOAP.RESPONSE;
    return bodyNode.getNodeEndsWith(methodResName);
  }
View Full Code Here


    return bodyNode.getNodeEndsWith(methodResName);
  }

  public Node getFaultNode()
  {
    Node bodyNode = getBodyNode();
    if (bodyNode == null)
      return null;
    return bodyNode.getNodeEndsWith(SOAP.FAULT);
  }
View Full Code Here

    return bodyNode.getNodeEndsWith(SOAP.FAULT);
  }

  public Node getFaultCodeNode()
  {
    Node faultNode = getFaultNode();
    if (faultNode == null)
      return null;
    return faultNode.getNodeEndsWith(SOAP.FAULT_CODE);
  }
View Full Code Here

    return faultNode.getNodeEndsWith(SOAP.FAULT_CODE);
  }

  public Node getFaultStringNode()
  {
    Node faultNode = getFaultNode();
    if (faultNode == null)
      return null;
    return faultNode.getNodeEndsWith(SOAP.FAULT_STRING);
  }
View Full Code Here

    return faultNode.getNodeEndsWith(SOAP.FAULT_STRING);
  }

  public Node getFaultActorNode()
  {
    Node faultNode = getFaultNode();
    if (faultNode == null)
      return null;
    return faultNode.getNodeEndsWith(SOAP.FAULTACTOR);
  }
View Full Code Here

    return faultNode.getNodeEndsWith(SOAP.FAULTACTOR);
  }

  public Node getFaultDetailNode()
  {
    Node faultNode = getFaultNode();
    if (faultNode == null)
      return null;
    return faultNode.getNodeEndsWith(SOAP.DETAIL);
  }
View Full Code Here

    return faultNode.getNodeEndsWith(SOAP.DETAIL);
  }

  public String getFaultCode()
  {
    Node node = getFaultCodeNode();
    if (node == null)
      return "";
    return node.getValue();
  }
View Full Code Here

    return node.getValue();
  }
 
  public String getFaultString()
  {
    Node node = getFaultStringNode();
    if (node == null)
      return "";
    return node.getValue();
  }
View Full Code Here

    return node.getValue();
  }
 
  public String getFaultActor()
  {
    Node node = getFaultActorNode();
    if (node == null)
      return "";
    return node.getValue();
  }
View Full Code Here

  public void print()
  {
    Debug.message(toString());
    if (hasContent() == true)
      return;
    Node rootElem = getRootNode();
    if (rootElem == null)
      return;
    Debug.message(rootElem.toString());
  }
View Full Code Here

TOP

Related Classes of org.cybergarage.xml.Node

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.