View Javadoc
1   package test.util;
2   
3   import org.bitbucket.jrsofty.parser.logging.api.LogElementMapping;
4   import org.bitbucket.jrsofty.parser.logging.api.LogEntry;
5   
6   public class LogElementOtherAnnotations implements LogEntry {
7   
8     @LogElementMapping(logToken = "%ip4")
9     private String ip4Value;
10  
11    @LogElementMapping(logToken = "%dtm")
12    @Deprecated
13    private String dateStringValue;
14  
15    public void setIp4Value(final String value1) {
16      this.ip4Value = value1;
17    }
18  
19    public void setDateStringValue(final String value2) {
20      this.dateStringValue = value2;
21    }
22  
23    public String getIp4Value() {
24      return this.ip4Value;
25    }
26  
27    public String getDateStringValue() {
28      return this.dateStringValue;
29    }
30  
31  }