Пример #1
0
 @Action(
     value = "service-reg",
     results = {@Result(name = "success", type = "tiles", location = "/customers.tiles")})
 public String list() {
   this.customerList = customerService.findAll();
   this.carmarkList = carMarkService.findAll();
   defectList = new LinkedList<Defect>();
   session.put("defectList", defectList);
   costList = new LinkedList<Cost>();
   session.put("costList", costList);
   return SUCCESS;
 }