コード例 #1
0
 /*
  * Gets an Image File for a specific ID
  */
 public RESTImageV1 getImageById(final int id) {
   try {
     return client.getJSONImage(id, null);
   } catch (Exception e) {
     log.error(ExceptionUtilities.getStackTrace(e));
   }
   return null;
 }