public GwtRpcCommLayerPojoResponse create(HttpResponse response) {
HttpEntity resEntity = response.getEntity();
byte[] respData = new byte[0];
try {
respData = deserializeIntoBytes(resEntity);
GwtRpcCommLayerPojoResponse pojoResp = createInstanceFromBytes(respData);
return pojoResp;
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} catch (ClassNotFoundException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.