Package org.dspace.workflow
Class NotifyType
- java.lang.Object
-
- org.dspace.workflow.NotifyType
-
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public class NotifyType extends ObjectThe 'notify' element allows you use the workflow system of notifications (email) whenever a task is performed and returns the designated status code (in the 'on' attribute): 'fail', 'success' or 'error'. The content of each 'notify' element must be one of the following types: o an eperson name; o an eperson group; o or one of the special literals: - '$flowgroup' = the workflow group of the step (if any). - '$colladmin' = the collection administrator's group (if any). - '$siteadmin' = the site administrator.Java class for notify-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="notify-type"> <simpleContent> <extension base="<https://dspace.org/workflow-curation>recipient-type"> <attribute name="on" use="required" type="{https://dspace.org/workflow-curation}condition-type" /> </extension> </simpleContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ConditionTypeonprotected Stringvalue
-
Constructor Summary
Constructors Constructor Description NotifyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConditionTypegetOn()Gets the value of the on property.StringgetValue()Gets the value of the value property.voidsetOn(ConditionType value)Sets the value of the on property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Field Detail
-
value
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") protected String value
-
on
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") protected ConditionType on
-
-
Method Detail
-
getValue
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public String getValue()Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public void setValue(String value)Sets the value of the value property.- Parameters:
value- allowed object isString
-
getOn
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public ConditionType getOn()Gets the value of the on property.- Returns:
- possible object is
ConditionType
-
setOn
@Generated(value="com.sun.tools.xjc.Driver", date="2021-12-13T12:38:33-06:00", comments="JAXB RI v2.3.2") public void setOn(ConditionType value)Sets the value of the on property.- Parameters:
value- allowed object isConditionType
-
-