| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| TermResolverAttributeContract |
|
| 1.0;1 |
| 1 | package org.kuali.rice.krms.api.repository.term; | |
| 2 | ||
| 3 | import org.kuali.rice.krms.api.repository.BaseAttributeContract; | |
| 4 | ||
| 5 | ||
| 6 | public interface TermResolverAttributeContract extends BaseAttributeContract { | |
| 7 | ||
| 8 | /** | |
| 9 | * This is the id of the TermResolver to which the attribute applies | |
| 10 | * | |
| 11 | * <p> | |
| 12 | * It is a id of a TermResolver related to the attribute. | |
| 13 | * </p> | |
| 14 | * @return id for TermResolver related to the attribute. | |
| 15 | */ | |
| 16 | public String getTermResolverId(); | |
| 17 | ||
| 18 | } |