1 9 package org.jboss.portal.core.plugins.security; 10 11 import java.util.Iterator ; 12 13 import org.jboss.portal.core.security.Item; 14 15 import javax.servlet.ServletContext ; 16 17 26 public interface ModelContentProvider 27 { 28 31 void init(ServletContext servletContext); 32 33 36 Item getItem(String [] path); 37 38 41 Iterator getChildren(String [] path); 42 43 46 void destroy(); 47 } 48 | Popular Tags |