com.netgrif.application.engine.importer.model.Logic Maven / Gradle / Ivy
Show all versions of application-engine Show documentation
package com.netgrif.application.engine.importer.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for logic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="logic">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="perform" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="delegate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="view" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="cancel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="finish" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="assigned" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="assign" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </choice>
* <element name="behavior" type="{}behavior" maxOccurs="unbounded" minOccurs="0"/>
* <element name="action" type="{}action" maxOccurs="unbounded" minOccurs="0"/>
* <element name="actionRef" type="{}actionRef" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "logic", propOrder = {
"perform",
"delegate",
"view",
"cancel",
"finish",
"assigned",
"assign",
"behavior",
"action",
"actionRef"
})
public class Logic {
protected Boolean perform;
protected Boolean delegate;
protected Boolean view;
protected Boolean cancel;
protected Boolean finish;
protected Boolean assigned;
protected Boolean assign;
@XmlSchemaType(name = "string")
protected List behavior;
protected List action;
protected List actionRef;
/**
* Gets the value of the perform property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPerform() {
return perform;
}
/**
* Sets the value of the perform property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPerform(Boolean value) {
this.perform = value;
}
/**
* Gets the value of the delegate property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDelegate() {
return delegate;
}
/**
* Sets the value of the delegate property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDelegate(Boolean value) {
this.delegate = value;
}
/**
* Gets the value of the view property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isView() {
return view;
}
/**
* Sets the value of the view property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setView(Boolean value) {
this.view = value;
}
/**
* Gets the value of the cancel property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCancel() {
return cancel;
}
/**
* Sets the value of the cancel property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCancel(Boolean value) {
this.cancel = value;
}
/**
* Gets the value of the finish property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFinish() {
return finish;
}
/**
* Sets the value of the finish property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFinish(Boolean value) {
this.finish = value;
}
/**
* Gets the value of the assigned property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAssigned() {
return assigned;
}
/**
* Sets the value of the assigned property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAssigned(Boolean value) {
this.assigned = value;
}
/**
* Gets the value of the assign property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAssign() {
return assign;
}
/**
* Sets the value of the assign property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAssign(Boolean value) {
this.assign = value;
}
/**
* Gets the value of the behavior property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the behavior property.
*
*
* For example, to add a new item, do as follows:
*
* getBehavior().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Behavior }
*
*
*/
public List getBehavior() {
if (behavior == null) {
behavior = new ArrayList();
}
return this.behavior;
}
/**
* Gets the value of the action property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the action property.
*
*
* For example, to add a new item, do as follows:
*
* getAction().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Action }
*
*
*/
public List getAction() {
if (action == null) {
action = new ArrayList();
}
return this.action;
}
/**
* Gets the value of the actionRef property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the actionRef property.
*
*
* For example, to add a new item, do as follows:
*
* getActionRef().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ActionRef }
*
*
*/
public List getActionRef() {
if (actionRef == null) {
actionRef = new ArrayList();
}
return this.actionRef;
}
}