1 31 32 package org.opencms.file.collectors; 33 34 import org.opencms.file.CmsDataAccessException; 35 import org.opencms.file.CmsObject; 36 import org.opencms.main.CmsException; 37 38 import java.util.List ; 39 40 49 public interface I_CmsResourceCollector extends Comparable { 50 51 56 List getCollectorNames(); 57 58 75 String getCreateLink(CmsObject cms) throws CmsException, CmsDataAccessException; 76 77 96 String getCreateLink(CmsObject cms, String collectorName, String param) throws CmsException, CmsDataAccessException; 97 98 114 String getCreateParam(CmsObject cms) throws CmsDataAccessException; 115 116 134 String getCreateParam(CmsObject cms, String collectorName, String param) throws CmsDataAccessException; 135 136 141 String getDefaultCollectorName(); 142 143 148 String getDefaultCollectorParam(); 149 150 159 int getOrder(); 160 161 172 List getResults(CmsObject cms) throws CmsDataAccessException, CmsException; 173 174 187 List getResults(CmsObject cms, String collectorName, String param) throws CmsDataAccessException, CmsException; 188 189 194 void setDefaultCollectorName(String collectorName); 195 196 201 void setDefaultCollectorParam(String param); 202 203 210 void setOrder(int order); 211 }
| Popular Tags
|