1 45 package org.openejb.spi; 46 47 48 public interface SecurityService extends Service{ 49 50 56 public boolean isCallerAuthorized(Object securityIdentity,String [] roleNames); 57 58 68 public Object translateTo(Object securityIdentity, Class type); 69 70 77 public void setSecurityIdentity(Object securityIdentity); 78 79 83 public Object getSecurityIdentity( ); 84 } | Popular Tags |