107108109110111112113114115116
} @Override public RestResponse execute(Object controller) throws Exception { if (controller instanceof Get) { Get get = (Get) controller; return get.doGet(); } return super.execute(controller); }
87888990919293949596
private class GetDelegate extends MethodDelegate { @Override public RestResponse execute(Object controller) throws Exception { if (controller instanceof Get) { Get get = (Get) controller; return get.doGet(); } return super.execute(controller); }