1 7 8 package java.security.acl; 9 10 import java.security.Principal ; 11 12 22 public interface Owner { 23 24 39 public boolean addOwner(Principal caller, Principal owner) 40 throws NotOwnerException ; 41 42 63 public boolean deleteOwner(Principal caller, Principal owner) 64 throws NotOwnerException , LastOwnerException ; 65 66 75 public boolean isOwner(Principal owner); 76 77 } 78 | Popular Tags |