/** Refresh a bundle revision. */
 public void doRefreshBundle() throws IOException, MojoFailureException {
   try {
     logger.info("\n\n=============Refresh Bundle================\n\n");
     state = State.ACTIVATING;
     RestUtil.refreshBundle(super.getProfile(), this.bundleRevision);
   } catch (IOException e) {
     throw e;
   } catch (RuntimeException e) {
     throw e;
   }
 }