Class JSPForm

java.lang.Object
com.appiancorp.suiteapi.process.forms.JSPForm
All Implemented Interfaces:
XMLable, Serializable

public class JSPForm extends Object implements XMLable, Serializable
Specifies the location of the JSP for forms that of type JSPForm
See Also:
  • Constructor Details

    • JSPForm

      public JSPForm()
  • Method Details

    • getPath

      public String getPath()
      Gets the location of the underlying JSP for the JSPForm
      Returns:
      the relative location of the JSP file
    • setPath

      public void setPath(String path_)
      Sets the location of the underlying JSP for the JSPForm
    • toXML

      public String toXML()
      Creates an XML representation of this object.
      Specified by:
      toXML in interface XMLable
      Returns:
      The XML representation of this object.
    • toXML

      public void toXML(StringBuilder buffer_)
      Appends an XML representation of this object to the given buffer.
      Specified by:
      toXML in interface XMLable
      Parameters:
      buffer_ - The buffer on which to append the XML representation.
    • fromXML

      public static JSPForm fromXML(Node jspNode_)
      Constructs a JSPForm from XML. The XML should have the format: "<jsp-form></jsp-form>
      Parameters:
      jspNode_ - a Node that follows the above format.
      Returns:
      the JSPForm that the XML represents