1 16 17 package org.apache.jetspeed.om.registry; 18 19 import java.util.Vector ; 21 22 29 public interface SecurityAccess { 30 31 34 public String getAction(); 35 36 39 public void setAction(String action); 40 41 44 public Vector getAllows(); 45 46 49 public void setAllows(Vector allows); 50 51 54 public Vector getAllAllows(); 55 56 59 public Vector getOwnerAllows(); 60 61 64 public void setOwnerAllows(Vector ownerAllows); 65 66 } 67 | Popular Tags |