| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DocumentSearchCustomizationMediator |
|
| 1.0;1 |
| 1 | package org.kuali.rice.kew.docsearch; | |
| 2 | ||
| 3 | import org.kuali.rice.core.api.uif.RemotableAttributeField; | |
| 4 | import org.kuali.rice.kew.doctype.bo.DocumentType; | |
| 5 | ||
| 6 | import javax.jws.WebParam; | |
| 7 | import java.util.List; | |
| 8 | ||
| 9 | /** | |
| 10 | * Handles communication between {@link org.kuali.rice.kew.framework.docsearch.DocumentSearchCustomizationService} | |
| 11 | * endpoints in order to invoke document search customizations from various client applications. | |
| 12 | * | |
| 13 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
| 14 | */ | |
| 15 | public interface DocumentSearchCustomizationMediator { | |
| 16 | ||
| 17 | List<RemotableAttributeField> getSearchFields(DocumentType documentType); | |
| 18 | ||
| 19 | } |