renames this method getLabel to getExpenseSheet in IExpenseSheetService.

FEA: ItEr76S22ExpenseTrackingSystem
This commit is contained in:
Susana Montes Pedreira 2012-06-17 13:29:36 +01:00
parent 57f23e37fe
commit 79fe7d3bb4
2 changed files with 2 additions and 2 deletions

View file

@ -36,6 +36,6 @@ public interface IExpenseSheetService {
InstanceConstraintViolationsListDTO addExpenseSheets(
ExpenseSheetListDTO expenseSheetListDTO);
Response getLabel(String code);
Response getExpenseSheet(String code);
}

View file

@ -143,7 +143,7 @@ public class ExpenseSheetServiceREST extends
@GET
@Path("/{code}/")
@Transactional(readOnly = true)
public Response getLabel(@PathParam("code") String code) {
public Response getExpenseSheet(@PathParam("code") String code) {
return getDTOByCode(code);
}