01: package hero.util.values;
02:
03: import java.io.Serializable;
04: import java.util.Collection;
05: import java.util.ArrayList;
06:
07: public final class BonitaConfigValue implements Serializable {
08:
09: // --------------------------------------------------- Instance Variables
10:
11: private boolean jms;
12:
13: private boolean log;
14:
15: private boolean trace;
16:
17: private String historic = null;
18:
19: private String logLevel = null;
20:
21: private String traceLevel = null;
22:
23: // ----------------------------------------------------------- Properties
24:
25: public boolean getJms() {
26: return (jms);
27: }
28:
29: public void setJms(boolean jms) {
30: this .jms = jms;
31: }
32:
33: public boolean getLog() {
34: return (log);
35: }
36:
37: public void setLog(boolean log) {
38: this .log = log;
39: }
40:
41: public boolean getTrace() {
42: return (trace);
43: }
44:
45: public void setTrace(boolean trace) {
46: this .trace = trace;
47: }
48:
49: public String getHistoric() {
50: return (historic);
51: }
52:
53: public void setHistoric(String historic) {
54: this .historic = historic;
55: }
56:
57: public String getLogLevel() {
58: return (logLevel);
59: }
60:
61: public void setLogLevel(String logLevel) {
62: this .logLevel = logLevel;
63: }
64:
65: public String getTraceLevel() {
66: return (traceLevel);
67: }
68:
69: public void setTraceLevel(String traceLevel) {
70: this .traceLevel = traceLevel;
71: }
72:
73: public BonitaConfigValue() {
74: }
75: }
|