01: package org.acegisecurity.annotation;
02:
03: /**
04: * @author Joe Scalise
05: */
06: public class DepartmentServiceImpl extends
07: BusinessServiceImpl<Department> implements DepartmentService {
08:
09: @Secured({"ROLE_ADMIN"})
10: public Department someUserMethod3(final Department dept) {
11: return super.someUserMethod3(dept);
12: }
13: }
|