Esempio n. 1
0
 public static ApplicationDTO mapRestResourceToDto(Application app, boolean useAmq) {
   ApplicationDTO appDto = new ApplicationDTO(app.getName(), useAmq);
   for (Queue queue : app.getQueues()) {
     appDto.addQueue(queue.getName());
   }
   return appDto;
 }