* @package com.woltlab.wcf * @subpackage data * @category Community Framework */ interface ISearchAction { /** * Returns a list with data of objects that match the given search criteria. * * @return array */ public function getSearchResultList(); /** * Validates the "getSearchResultList" action. */ public function validateGetSearchResultList(); }