1 9 package org.jboss.portal.core.security; 10 11 import java.util.Iterator ; 12 import java.util.Map ; 13 14 21 public interface Model 22 { 23 29 Item getItem(String [] path); 30 31 37 Iterator getChildren(String [] path); 38 39 44 Map getPermissionDescriptions(); 45 46 54 boolean implies(String sourcePermission, String targetPermission) throws IllegalArgumentException ; 55 56 61 Scheme getDefaultScheme(); 62 } 63 | Popular Tags |