ERP/3.0/Developers Guide/Reference/Entity Model/OBSCHEDPausedTriggerGrps
This article is protected against manual editing because it is automatically generated from Openbravo meta-data. Learn more about writing and translating such documents.
OBSCHEDPausedTriggerGrps
Quartz groups of triggers inhibited from execution
To the database table (obsched_paused_trigger_grps) of this entity.
Properties
Note:
- Properties marked with a * are part of the Id of the Entity.
- Properties marked with a # are part of the Identifier of the Entity.
Property | Column | Constraints | Type | Description |
id* | Obsched_Paused_Trigger_Grps_ID | Mandatory Max Length: 32 | java.lang.String | |
schedName | Sched_Name | Mandatory Max Length: 120 | java.lang.String | 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. |
triggerGroup# | Trigger_Group | Mandatory Max Length: 200 | java.lang.String | Quartz trigger group identifier.
|
Java Entity Class
/* ************************************************************************* * The contents of this file are subject to the Openbravo Public License * Version 1.1 (the "License"), being the Mozilla Public License * Version 1.1 with a permitted attribution clause; you may not use this * file except in compliance with the License. You may obtain a copy of * the License at http://www.openbravo.com/legal/license.html * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * The Original Code is Openbravo ERP. * The Initial Developer of the Original Code is Openbravo SLU * All portions are Copyright (C) 2008-2020 Openbravo SLU * All Rights Reserved. * Contributor(s): ______________________________________. ************************************************************************ */ package org.openbravo.model.scheduling; import org.openbravo.base.structure.BaseOBObject; /** * Entity class for entity OBSCHEDPausedTriggerGrps (stored in table obsched_paused_trigger_grps). * <br> * Help: {@literal Quartz groups of triggers inhibited from execution} * <br> * NOTE: This class should not be instantiated directly. To instantiate this * class the {@link org.openbravo.base.provider.OBProvider} should be used. */ public class QuartzPausedTriggerGroup extends BaseOBObject { private static final long serialVersionUID = 1L; public static final String TABLE_NAME = "obsched_paused_trigger_grps"; public static final String ENTITY_NAME = "OBSCHEDPausedTriggerGrps"; /** * Property id stored in column Obsched_Paused_Trigger_Grps_ID in table obsched_paused_trigger_grps * */ public static final String PROPERTY_ID = "id"; /** * Property schedName stored in column Sched_Name in table obsched_paused_trigger_grps<br> * Help: {@literal 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.} * */ public static final String PROPERTY_SCHEDNAME = "schedName"; /** * Property triggerGroup stored in column Trigger_Group in table obsched_paused_trigger_grps * */ public static final String PROPERTY_TRIGGERGROUP = "triggerGroup"; public QuartzPausedTriggerGroup() { } @Override public String getEntityName() { return ENTITY_NAME; } /** * @see QuartzPausedTriggerGroup#PROPERTY_ID * */ public String getId() { return (String) get(PROPERTY_ID); } /** * @see QuartzPausedTriggerGroup#PROPERTY_ID * */ public void setId(String id) { set(PROPERTY_ID, id); } /** * @see QuartzPausedTriggerGroup#PROPERTY_SCHEDNAME * */ public String getSchedName() { return (String) get(PROPERTY_SCHEDNAME); } /** * @see QuartzPausedTriggerGroup#PROPERTY_SCHEDNAME * */ public void setSchedName(String schedName) { set(PROPERTY_SCHEDNAME, schedName); } /** * @see QuartzPausedTriggerGroup#PROPERTY_TRIGGERGROUP * */ public String getTriggerGroup() { return (String) get(PROPERTY_TRIGGERGROUP); } /** * @see QuartzPausedTriggerGroup#PROPERTY_TRIGGERGROUP * */ public void setTriggerGroup(String triggerGroup) { set(PROPERTY_TRIGGERGROUP, triggerGroup); } }