private Application cloneApplication(Application app) {
   Application newApp = new Application();
   newApp.setApplicationName(app.getApplicationName());
   newApp.setDisplayName(app.getDisplayName());
   newApp.setType(app.getType());
   newApp.setDescription(app.getDescription());
   newApp.setAccessPermissions(app.getAccessPermissions());
   newApp.setContentId(app.getContentId());
   return newApp;
 }