1 2 package hero.util.values; 3 4 import java.io.Serializable ; 5 import java.util.Collection ; 6 import java.util.ArrayList ; 7 8 public final class BonitaConfigValue implements Serializable { 9 10 12 private boolean jms; 13 14 private boolean log; 15 16 private boolean trace; 17 18 private String historic = null; 19 20 private String logLevel = null; 21 22 private String traceLevel = null; 23 24 26 public boolean getJms() { 27 return (jms); 28 } 29 30 public void setJms(boolean jms) { 31 this.jms = jms; 32 } 33 34 public boolean getLog() { 35 return (log); 36 } 37 38 public void setLog(boolean log) { 39 this.log = log; 40 } 41 42 public boolean getTrace() { 43 return (trace); 44 } 45 46 public void setTrace(boolean trace) { 47 this.trace = trace; 48 } 49 50 public String getHistoric() { 51 return (historic); 52 } 53 54 public void setHistoric(String historic) { 55 this.historic = historic; 56 } 57 58 public String getLogLevel() { 59 return (logLevel); 60 } 61 62 public void setLogLevel(String logLevel) { 63 this.logLevel = logLevel; 64 } 65 66 public String getTraceLevel() { 67 return (traceLevel); 68 } 69 70 public void setTraceLevel(String traceLevel) { 71 this.traceLevel = traceLevel; 72 } 73 74 public BonitaConfigValue(){} 75 } 76 | Popular Tags |