01: package org.acegisecurity.annotation; 02: 03: /** 04: * 05: * @author Joe Scalise 06: */ 07: public interface DepartmentService extends BusinessService { 08: 09: @Secured({"ROLE_USER"}) 10: Department someUserMethod3(Department dept); 11: }