1 package org.kuali.rice.kew.framework.document.lookup;
2
3 import java.util.List;
4
5 /**
6 * Defines the contract for which specifies attribute fields that should be included as part of document lookup criteria
7 * on the document lookup user interface.
8 *
9 * @author Kuali Rice Team (rice.collab@kuali.org)
10 */
11 public interface DocumentLookupCriteriaConfigurationContract {
12
13 /**
14 * Returns the additional attribute fields that should be included as part of the document lookup criteria on the
15 * document lookup user interface.
16 *
17 * @return the search attribute fields that are part of this configuration
18 */
19 List<AttributeFields> getSearchAttributeFields();
20
21 }