| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ActionAttributeContract |
|
| 1.0;1 |
| 1 | package org.kuali.rice.krms.api.repository.action; | |
| 2 | ||
| 3 | import org.kuali.rice.krms.api.repository.BaseAttributeContract; | |
| 4 | ||
| 5 | public interface ActionAttributeContract extends BaseAttributeContract { | |
| 6 | ||
| 7 | /** | |
| 8 | * This is the id of the Action to which the attribute applies | |
| 9 | * | |
| 10 | * <p> | |
| 11 | * It is a id of a Action related to the attribute. | |
| 12 | * </p> | |
| 13 | * @return id for Action related to the attribute. | |
| 14 | */ | |
| 15 | public String getActionId(); | |
| 16 | ||
| 17 | /** | |
| 18 | * This is the id of the action type of the attribute | |
| 19 | * | |
| 20 | * @return the action type id of the Attribute | |
| 21 | */ | |
| 22 | public String getActionTypeId(); | |
| 23 | ||
| 24 | } |