Package org.openbravo.model.scheduling
Class QuartzCalendars
- java.lang.Object
-
- org.openbravo.base.structure.BaseOBObject
-
- org.openbravo.model.scheduling.QuartzCalendars
-
- All Implemented Interfaces:
Serializable
,BaseOBObjectDef
,OBNotSingleton
,OBProvidable
,DynamicEnabled
,Identifiable
public class QuartzCalendars extends BaseOBObject
Entity class for entity OBSCHEDCalendars (stored in table obsched_calendars).
Help: Quartz execution calendar for simple triggers
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_CALENDAR
Property calendar stored in column Calendar in table obsched_calendarsstatic String
PROPERTY_CALENDARNAME
Property calendarName stored in column Calendar_Name in table obsched_calendarsstatic String
PROPERTY_ID
Property id stored in column Obsched_Calendars_ID in table obsched_calendarsstatic String
PROPERTY_SCHEDNAME
Property schedName stored in column Sched_Name in table obsched_calendars
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 QuartzCalendars()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getCalendar()
String
getCalendarName()
String
getEntityName()
String
getId()
String
getSchedName()
void
setCalendar(byte[] calendar)
void
setCalendarName(String calendarName)
void
setId(String id)
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_Calendars_ID in table obsched_calendars- See Also:
- Constant Field Values
-
PROPERTY_SCHEDNAME
public static final String PROPERTY_SCHEDNAME
Property schedName stored in column Sched_Name in table obsched_calendars
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_CALENDARNAME
public static final String PROPERTY_CALENDARNAME
Property calendarName stored in column Calendar_Name in table obsched_calendars- See Also:
- Constant Field Values
-
PROPERTY_CALENDAR
public static final String PROPERTY_CALENDAR
Property calendar stored in column Calendar in table obsched_calendars- 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
-
getCalendarName
public String getCalendarName()
- See Also:
PROPERTY_CALENDARNAME
-
setCalendarName
public void setCalendarName(String calendarName)
- See Also:
PROPERTY_CALENDARNAME
-
getCalendar
public byte[] getCalendar()
- See Also:
PROPERTY_CALENDAR
-
setCalendar
public void setCalendar(byte[] calendar)
- See Also:
PROPERTY_CALENDAR
-
-