Package org.openbravo.model.scheduling
Class QuartzLocks
- java.lang.Object
-
- org.openbravo.base.structure.BaseOBObject
-
- org.openbravo.model.scheduling.QuartzLocks
-
- All Implemented Interfaces:
Serializable
,BaseOBObjectDef
,OBNotSingleton
,OBProvidable
,DynamicEnabled
,Identifiable
public class QuartzLocks extends BaseOBObject
Entity class for entity OBSCHEDLocks (stored in table obsched_locks).
Help: Quartz locks to prevent concurrently acquiring a trigger from more than one instance on non-relational persistence stores
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_Locks_ID in table obsched_locksstatic String
PROPERTY_LOCKNAME
Property lockName stored in column Lock_Name in table obsched_locksstatic String
PROPERTY_SCHEDNAME
Property schedName stored in column Sched_Name in table obsched_locks
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
TABLE_NAME
-
Fields inherited from class org.openbravo.base.structure.BaseOBObject
ID
-
-
Constructor Summary
Constructors Constructor Description QuartzLocks()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEntityName()
String
getId()
String
getLockName()
String
getSchedName()
void
setId(String id)
void
setLockName(String lockName)
void
setSchedName(String schedName)
-
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_Locks_ID in table obsched_locks- See Also:
- Constant Field Values
-
PROPERTY_SCHEDNAME
public static final String PROPERTY_SCHEDNAME
Property schedName stored in column Sched_Name in table obsched_locks
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_LOCKNAME
public static final String PROPERTY_LOCKNAME
Property lockName stored in column Lock_Name in table obsched_locks- 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
-
getLockName
public String getLockName()
- See Also:
PROPERTY_LOCKNAME
-
setLockName
public void setLockName(String lockName)
- See Also:
PROPERTY_LOCKNAME
-
-