Esempio n. 1
0
 @Action(
     value = "department.cutSalariesOfDepartment",
     results = {@Result(name = "detail", location = "department-detail.jsp")})
 public String cutSalariesOfSubunit() throws Exception {
   department = CompanyService.instance().findDepartment(department.getId());
   department.cut();
   return "detail";
 }