Package org.openbravo.model.scheduling
Class QuartzSimpleTriggers
- java.lang.Object
-
- org.openbravo.base.structure.BaseOBObject
-
- org.openbravo.model.scheduling.QuartzSimpleTriggers
-
- All Implemented Interfaces:
Serializable
,BaseOBObjectDef
,OBNotSingleton
,OBProvidable
,DynamicEnabled
,Identifiable
public class QuartzSimpleTriggers extends BaseOBObject
Entity class for entity OBSCHEDSimpleTriggers (stored in table obsched_simple_triggers).
Help: Quartz triggers with basic scheduling options
NOTE: This class should not be instantiated directly. To instantiate this class theOBProvider
should be used.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ENTITY_NAME
static String
PROPERTY_ID
Property id stored in column Obsched_Simple_Triggers_ID in table obsched_simple_triggersstatic String
PROPERTY_REPEATCOUNT
Property repeatCount stored in column Repeat_Count in table obsched_simple_triggers
Help: Number of times a trigger is to be repeated.static String
PROPERTY_REPEATINTERVAL
Property repeatInterval stored in column Repeat_Interval in table obsched_simple_triggers
Help: Time interval to wait between executions of the trigger.static String
PROPERTY_SCHEDNAME
Property schedName stored in column Sched_Name in table obsched_simple_triggers
Help: Quartz scheduler name. In non-clustered environment it's "NON-CLUSTERED". In a clustered environment it usually matches the machine.name of the cluster instance.static String
PROPERTY_TIMESTRIGGERED
Property timesTriggered stored in column Times_Triggered in table obsched_simple_triggers
Help: Number of times a trigger has been triggered.static String
PROPERTY_TRIGGERGROUP
Property triggerGroup stored in column Trigger_Group in table obsched_simple_triggersstatic String
PROPERTY_TRIGGERNAME
Property triggerName stored in column Trigger_Name in table obsched_simple_triggersstatic String
TABLE_NAME
-
Fields inherited from class org.openbravo.base.structure.BaseOBObject
ID
-
-
Constructor Summary
Constructors Constructor Description QuartzSimpleTriggers()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEntityName()
String
getId()
Long
getRepeatCount()
Long
getRepeatInterval()
String
getSchedName()
Long
getTimesTriggered()
String
getTriggerGroup()
String
getTriggerName()
void
setId(String id)
void
setRepeatCount(Long repeatCount)
void
setRepeatInterval(Long repeatInterval)
void
setSchedName(String schedName)
void
setTimesTriggered(Long timesTriggered)
void
setTriggerGroup(String triggerGroup)
void
setTriggerName(String triggerName)
-
Methods inherited from class org.openbravo.base.structure.BaseOBObject
checkDerivedReadable, get, get, get, getEntity, getIdentifier, getValue, isAllowRead, isNewOBObject, isOrgClientAccessCheckEnabled, isWriteAccessCheckEnabled, set, setAccessChecks, setAllowRead, setDefaultValue, setId, setNewOBObject, setValue, toString, validate
-
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
- See Also:
- Constant Field Values
-
ENTITY_NAME
public static final String ENTITY_NAME
- See Also:
- Constant Field Values
-
PROPERTY_ID
public static final String PROPERTY_ID
Property id stored in column Obsched_Simple_Triggers_ID in table obsched_simple_triggers- See Also:
- Constant Field Values
-
PROPERTY_SCHEDNAME
public static final String PROPERTY_SCHEDNAME
Property schedName stored in column Sched_Name in table obsched_simple_triggers
Help: Quartz scheduler name. In non-clustered environment it's "NON-CLUSTERED". In a clustered environment it usually matches the machine.name of the cluster instance.- See Also:
- Constant Field Values
-
PROPERTY_TRIGGERNAME
public static final String PROPERTY_TRIGGERNAME
Property triggerName stored in column Trigger_Name in table obsched_simple_triggers- See Also:
- Constant Field Values
-
PROPERTY_TRIGGERGROUP
public static final String PROPERTY_TRIGGERGROUP
Property triggerGroup stored in column Trigger_Group in table obsched_simple_triggers- See Also:
- Constant Field Values
-
PROPERTY_REPEATCOUNT
public static final String PROPERTY_REPEATCOUNT
Property repeatCount stored in column Repeat_Count in table obsched_simple_triggers
Help: Number of times a trigger is to be repeated.- See Also:
- Constant Field Values
-
PROPERTY_REPEATINTERVAL
public static final String PROPERTY_REPEATINTERVAL
Property repeatInterval stored in column Repeat_Interval in table obsched_simple_triggers
Help: Time interval to wait between executions of the trigger.- See Also:
- Constant Field Values
-
PROPERTY_TIMESTRIGGERED
public static final String PROPERTY_TIMESTRIGGERED
Property timesTriggered stored in column Times_Triggered in table obsched_simple_triggers
Help: Number of times a trigger has been triggered.- See Also:
- Constant Field Values
-
-
Method Detail
-
getEntityName
public String getEntityName()
- Specified by:
getEntityName
in interfaceIdentifiable
- Specified by:
getEntityName
in classBaseOBObject
-
getId
public String getId()
- Specified by:
getId
in interfaceBaseOBObjectDef
- Specified by:
getId
in interfaceIdentifiable
- Overrides:
getId
in classBaseOBObject
- See Also:
PROPERTY_ID
-
setId
public void setId(String id)
- See Also:
PROPERTY_ID
-
getSchedName
public String getSchedName()
- See Also:
PROPERTY_SCHEDNAME
-
setSchedName
public void setSchedName(String schedName)
- See Also:
PROPERTY_SCHEDNAME
-
getTriggerName
public String getTriggerName()
- See Also:
PROPERTY_TRIGGERNAME
-
setTriggerName
public void setTriggerName(String triggerName)
- See Also:
PROPERTY_TRIGGERNAME
-
getTriggerGroup
public String getTriggerGroup()
- See Also:
PROPERTY_TRIGGERGROUP
-
setTriggerGroup
public void setTriggerGroup(String triggerGroup)
- See Also:
PROPERTY_TRIGGERGROUP
-
getRepeatCount
public Long getRepeatCount()
- See Also:
PROPERTY_REPEATCOUNT
-
setRepeatCount
public void setRepeatCount(Long repeatCount)
- See Also:
PROPERTY_REPEATCOUNT
-
getRepeatInterval
public Long getRepeatInterval()
- See Also:
PROPERTY_REPEATINTERVAL
-
setRepeatInterval
public void setRepeatInterval(Long repeatInterval)
- See Also:
PROPERTY_REPEATINTERVAL
-
getTimesTriggered
public Long getTimesTriggered()
- See Also:
PROPERTY_TIMESTRIGGERED
-
setTimesTriggered
public void setTimesTriggered(Long timesTriggered)
- See Also:
PROPERTY_TIMESTRIGGERED
-
-