- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 44 of file SystemLog.java.
◆ getComment()
String org.turro.elephant.entities.db.SystemLog.getComment |
( |
| ) |
|
◆ getCounts()
int org.turro.elephant.entities.db.SystemLog.getCounts |
( |
| ) |
|
◆ getData()
byte [] org.turro.elephant.entities.db.SystemLog.getData |
( |
| ) |
|
◆ getDateLog()
Date org.turro.elephant.entities.db.SystemLog.getDateLog |
( |
| ) |
|
◆ getEntityName()
String org.turro.elephant.entities.db.SystemLog.getEntityName |
( |
| ) |
|
◆ getEntityPath()
String org.turro.elephant.entities.db.SystemLog.getEntityPath |
( |
| ) |
|
◆ getGeneratorName()
String org.turro.elephant.entities.db.SystemLog.getGeneratorName |
( |
| ) |
|
◆ getGeneratorPath()
String org.turro.elephant.entities.db.SystemLog.getGeneratorPath |
( |
| ) |
|
◆ getLogType()
SystemLogType org.turro.elephant.entities.db.SystemLog.getLogType |
( |
| ) |
|
◆ getObject()
Object org.turro.elephant.entities.db.SystemLog.getObject |
( |
| ) |
|
Definition at line 145 of file SystemLog.java.
147 GenericObject go =
new GenericObject();
148 go.bytesToObject(data);
149 return go.getObject();
◆ getString()
String org.turro.elephant.entities.db.SystemLog.getString |
( |
| ) |
|
Definition at line 138 of file SystemLog.java.
139 if(data !=
null && data.length > 0) {
140 return new String(data);
◆ setComment()
void org.turro.elephant.entities.db.SystemLog.setComment |
( |
String |
comment | ) |
|
◆ setCounts()
void org.turro.elephant.entities.db.SystemLog.setCounts |
( |
int |
counts | ) |
|
◆ setData()
void org.turro.elephant.entities.db.SystemLog.setData |
( |
byte[] |
data | ) |
|
◆ setDateLog()
void org.turro.elephant.entities.db.SystemLog.setDateLog |
( |
Date |
dateLog | ) |
|
◆ setEntityName()
void org.turro.elephant.entities.db.SystemLog.setEntityName |
( |
String |
entityName | ) |
|
◆ setEntityPath()
void org.turro.elephant.entities.db.SystemLog.setEntityPath |
( |
String |
entityPath | ) |
|
◆ setGeneratorName()
void org.turro.elephant.entities.db.SystemLog.setGeneratorName |
( |
String |
generatorName | ) |
|
Definition at line 100 of file SystemLog.java.
101 this.generatorName = generatorName;
◆ setGeneratorPath()
void org.turro.elephant.entities.db.SystemLog.setGeneratorPath |
( |
String |
generatorPath | ) |
|
Definition at line 84 of file SystemLog.java.
85 this.generatorPath = generatorPath;
◆ setLogType()
void org.turro.elephant.entities.db.SystemLog.setLogType |
( |
SystemLogType |
logType | ) |
|
◆ setObject()
void org.turro.elephant.entities.db.SystemLog.setObject |
( |
Serializable |
object | ) |
|
Definition at line 155 of file SystemLog.java.
157 GenericObject go =
new GenericObject();
158 go.setObject(
object);
159 data = go.objectToBytes();
The documentation for this class was generated from the following file: