1
14 package ch.qos.logback.classic.spi;
15
16 import java.io.Serializable;
17 import java.util.Map;
18
19 import ch.qos.logback.classic.LoggerContext;
20
21
36 public class LoggerContextVO implements Serializable {
37
38 private static final long serialVersionUID = 5488023392483144387L;
39
40 final String name;
41 final Map<String, String> propertyMap;
42 final long birthTime;
43
44 public LoggerContextVO(LoggerContext lc) {
45 this.name = lc.getName();
46 this.propertyMap = lc.getCopyOfPropertyMap();
47 this.birthTime = lc.getBirthTime();
48 }
49
50 public LoggerContextVO(String name, Map<String, String> propertyMap, long birthTime) {
51 this.name = name;
52 this.propertyMap = propertyMap;
53 this.birthTime = birthTime;
54 }
55
56 public String getName() {
57 return name;
58 }
59
60 public Map<String, String> getPropertyMap() {
61 return propertyMap;
62 }
63
64 public long getBirthTime() {
65 return birthTime;
66 }
67
68 @Override
69 public String toString() {
70 return "LoggerContextVO{" + "name='" + name + '\'' + ", propertyMap=" + propertyMap + ", birthTime=" + birthTime + '}';
71 }
72
73 @Override
74 public boolean equals(Object o) {
75 if (this == o)
76 return true;
77 if (!(o instanceof LoggerContextVO))
78 return false;
79
80 LoggerContextVO that = (LoggerContextVO) o;
81
82 if (birthTime != that.birthTime)
83 return false;
84 if (name != null ? !name.equals(that.name) : that.name != null)
85 return false;
86 if (propertyMap != null ? !propertyMap.equals(that.propertyMap) : that.propertyMap != null)
87 return false;
88
89 return true;
90 }
91
92 @Override
93 public int hashCode() {
94 int result = name != null ? name.hashCode() : 0;
95 result = 31 * result + (propertyMap != null ? propertyMap.hashCode() : 0);
96 result = 31 * result + (int) (birthTime ^ (birthTime >>> 32));
97
98 return result;
99 }
100 }
101