Exemplo n.º 1
0
 public void setDebugSeverity(String severity) {
   this.debugSeverity = Severity.valueOf(severity.toUpperCase());
 }
Exemplo n.º 2
0
 public void setInfoSeverity(String severity) {
   this.infoSeverity = Severity.valueOf(severity.toUpperCase());
 }
Exemplo n.º 3
0
 public void setErrorSeverity(String severity) {
   this.errorSeverity = Severity.valueOf(severity.toUpperCase());
 }
Exemplo n.º 4
0
 public void setWarnSeverity(String severity) {
   this.warnSeverity = Severity.valueOf(severity.toUpperCase());
 }
Exemplo n.º 5
0
 public void setFatalSeverity(String severity) {
   this.fatalSeverity = Severity.valueOf(severity.toUpperCase());
 }