1 25 26 package org.objectweb.easybeans.api.bean.info; 27 28 import java.security.Permission ; 29 import java.util.List ; 30 31 35 public interface IMethodSecurityInfo { 36 37 41 void setExcluded(boolean excluded); 42 43 46 boolean isExcluded(); 47 48 52 void setUnchecked(boolean unchecked); 53 54 57 boolean isUnchecked(); 58 59 63 void addRole(String roleName); 64 65 68 List <String > getRoles(); 69 70 74 void setPermission(Permission permission); 75 76 79 Permission getPermission(); 80 81 } 82 | Popular Tags |