MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / queryAll

Method queryAll

src/main/java/core/packetproxy/model/Configs.java:76–87  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

74 }
75
76 public List<Config> queryAll() throws Exception {
77 List<Config> ret = cache.query("queryAll", 0);
78 if (ret != null) {
79
80 return ret;
81 }
82
83 ret = dao.queryForAll();
84
85 cache.set("queryAll", 0, ret);
86 return ret;
87 }
88
89 public void update(Config config) throws Exception {
90 dao.update(config);

Callers 15

patchContainerMethod · 0.45
showDialogMethod · 0.45
createAppliedServersMethod · 0.45
updateImplMethod · 0.45
GUIFilterDropDownListMethod · 0.45
updateImplMethod · 0.45
updateImplMethod · 0.45
createAppliedServersMethod · 0.45
updateImplMethod · 0.45
updateImplMethod · 0.45
updateImplMethod · 0.45
updateImplMethod · 0.45

Calls 2

queryMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected