org.wso2.carbon.humantask.TCompletionBehavior Maven / Gradle / Ivy
/*
* XML Type: tCompletionBehavior
* Namespace: http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803
* Java type: org.wso2.carbon.humantask.TCompletionBehavior
*
* Automatically generated - do not modify.
*/
package org.wso2.carbon.humantask;
/**
* An XML tCompletionBehavior(@http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803).
*
* This is a complex type.
*/
public interface TCompletionBehavior extends org.wso2.carbon.humantask.TExtensibleElements
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TCompletionBehavior.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s8FFCE9AA01FE478F7AF98F30F30739E2").resolveHandle("tcompletionbehavior5a11type");
/**
* Gets array of all "completion" elements
*/
org.wso2.carbon.humantask.TCompletion[] getCompletionArray();
/**
* Gets ith "completion" element
*/
org.wso2.carbon.humantask.TCompletion getCompletionArray(int i);
/**
* Returns number of "completion" element
*/
int sizeOfCompletionArray();
/**
* Sets array of all "completion" element
*/
void setCompletionArray(org.wso2.carbon.humantask.TCompletion[] completionArray);
/**
* Sets ith "completion" element
*/
void setCompletionArray(int i, org.wso2.carbon.humantask.TCompletion completion);
/**
* Inserts and returns a new empty value (as xml) as the ith "completion" element
*/
org.wso2.carbon.humantask.TCompletion insertNewCompletion(int i);
/**
* Appends and returns a new empty value (as xml) as the last "completion" element
*/
org.wso2.carbon.humantask.TCompletion addNewCompletion();
/**
* Removes the ith "completion" element
*/
void removeCompletion(int i);
/**
* Gets the "defaultCompletion" element
*/
org.wso2.carbon.humantask.TDefaultCompletion getDefaultCompletion();
/**
* True if has "defaultCompletion" element
*/
boolean isSetDefaultCompletion();
/**
* Sets the "defaultCompletion" element
*/
void setDefaultCompletion(org.wso2.carbon.humantask.TDefaultCompletion defaultCompletion);
/**
* Appends and returns a new empty "defaultCompletion" element
*/
org.wso2.carbon.humantask.TDefaultCompletion addNewDefaultCompletion();
/**
* Unsets the "defaultCompletion" element
*/
void unsetDefaultCompletion();
/**
* Gets the "completionAction" attribute
*/
org.wso2.carbon.humantask.TPattern.Enum getCompletionAction();
/**
* Gets (as xml) the "completionAction" attribute
*/
org.wso2.carbon.humantask.TPattern xgetCompletionAction();
/**
* True if has "completionAction" attribute
*/
boolean isSetCompletionAction();
/**
* Sets the "completionAction" attribute
*/
void setCompletionAction(org.wso2.carbon.humantask.TPattern.Enum completionAction);
/**
* Sets (as xml) the "completionAction" attribute
*/
void xsetCompletionAction(org.wso2.carbon.humantask.TPattern completionAction);
/**
* Unsets the "completionAction" attribute
*/
void unsetCompletionAction();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static org.wso2.carbon.humantask.TCompletionBehavior newInstance() {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static org.wso2.carbon.humantask.TCompletionBehavior parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.wso2.carbon.humantask.TCompletionBehavior parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.wso2.carbon.humantask.TCompletionBehavior parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.wso2.carbon.humantask.TCompletionBehavior) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy