added getters and setters for json serialization

This commit is contained in:
Athou
2013-06-28 22:37:46 +02:00
parent 8c080a581e
commit 32fb3229ca

View File

@@ -170,5 +170,21 @@ public class MetricsBean {
this.pushFeedsQueued = pushFeedsQueued;
}
public int getEntryCacheHit() {
return entryCacheHit;
}
public void setEntryCacheHit(int entryCacheHit) {
this.entryCacheHit = entryCacheHit;
}
public int getEntryCacheMiss() {
return entryCacheMiss;
}
public void setEntryCacheMiss(int entryCacheMiss) {
this.entryCacheMiss = entryCacheMiss;
}
}
}