Package org.openbravo.model.ad.utility
Class SQLScript
- java.lang.Object
-
- org.openbravo.base.structure.BaseOBObject
-
- org.openbravo.model.ad.utility.SQLScript
-
- All Implemented Interfaces:
Serializable
,BaseOBObjectDef
,OBNotSingleton
,OBProvidable
,DynamicEnabled
,Identifiable
public class SQLScript extends BaseOBObject
Entity class for entity SQLScript (stored in table AD_Script_SQL).
Help: Auxiliary table used by several processes to temporarily store sql commands and later execute them
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 Seqno in table AD_Script_SQLstatic String
PROPERTY_STRSQL
Property strsql stored in column Strsql in table AD_Script_SQLstatic String
TABLE_NAME
-
Fields inherited from class org.openbravo.base.structure.BaseOBObject
ID
-
-
Constructor Summary
Constructors Constructor Description SQLScript()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEntityName()
Long
getId()
String
getStrsql()
void
setId(Long id)
void
setStrsql(String strsql)
-
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 Seqno in table AD_Script_SQL- See Also:
- Constant Field Values
-
PROPERTY_STRSQL
public static final String PROPERTY_STRSQL
Property strsql stored in column Strsql in table AD_Script_SQL- See Also:
- Constant Field Values
-
-
Method Detail
-
getEntityName
public String getEntityName()
- Specified by:
getEntityName
in interfaceIdentifiable
- Specified by:
getEntityName
in classBaseOBObject
-
getId
public Long getId()
- Specified by:
getId
in interfaceBaseOBObjectDef
- Specified by:
getId
in interfaceIdentifiable
- Overrides:
getId
in classBaseOBObject
- See Also:
PROPERTY_ID
-
setId
public void setId(Long id)
- See Also:
PROPERTY_ID
-
getStrsql
public String getStrsql()
- See Also:
PROPERTY_STRSQL
-
setStrsql
public void setStrsql(String strsql)
- See Also:
PROPERTY_STRSQL
-
-