mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
added getters and setters for json serialization
This commit is contained in:
@@ -170,5 +170,21 @@ public class MetricsBean {
|
|||||||
this.pushFeedsQueued = pushFeedsQueued;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user