1 16 17 package org.apache.jetspeed.om.registry; 18 19 import java.util.Iterator ; 20 21 27 28 public interface PortletRegistry extends Registry 29 { 30 31 36 public Iterator listByCategory(); 37 38 44 public Iterator findPortletsByCategory(String category); 45 46 53 public Iterator findPortletsByGroupCategory(String group, String category); 54 55 62 public String getCategoryKey( Category category ); 63 64 } 65 66 67 | Popular Tags |