public CacheKey constructCacheKey() {
ParameterCacheKey cacheKey = new ParameterCacheKey();
cacheKey.addParameter("id", this.id);
cacheKey.addParameter("name", this.name);
cacheKey.addParameter("reqparam", this.reqparam);
return cacheKey;
}
public RestResponse doGet() throws Exception {
Map<String, Object> data = new HashMap<String, Object>();