| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| KrmsTypeAttributeContract |
|
| 1.0;1 |
| 1 | package org.kuali.rice.krms.api.repository; | |
| 2 | ||
| 3 | import java.util.List; | |
| 4 | ||
| 5 | public interface KrmsTypeAttributeContract { | |
| 6 | /** | |
| 7 | * This is the ID for the KrmsTypeAttribute | |
| 8 | * | |
| 9 | * <p> | |
| 10 | * It is a ID of a KrmsTypeAttribute | |
| 11 | * </p> | |
| 12 | * @return ID for KrmsTypeAttribute | |
| 13 | */ | |
| 14 | public String getId(); | |
| 15 | ||
| 16 | /** | |
| 17 | * This is the KrmsType to which the attribute applies | |
| 18 | * | |
| 19 | * <p> | |
| 20 | * It is a id of a KRMS type related to the attribute. | |
| 21 | * </p> | |
| 22 | * @return id for KRMS type related to the attribute. | |
| 23 | */ | |
| 24 | public String getTypeId(); | |
| 25 | ||
| 26 | /** | |
| 27 | * This is the id of the definition of the attribute. | |
| 28 | * | |
| 29 | * <p> | |
| 30 | * It identifies the attribute definition | |
| 31 | * </p> | |
| 32 | * @return the attribute definition id. | |
| 33 | */ | |
| 34 | public String getAttributeDefinitionId(); | |
| 35 | ||
| 36 | /** | |
| 37 | * This is the sequence number of the attribute | |
| 38 | * | |
| 39 | * @return the service name of the KrmsTypeAttribute | |
| 40 | */ | |
| 41 | public Integer getSequenceNumber(); | |
| 42 | ||
| 43 | /** | |
| 44 | * @return the active | |
| 45 | */ | |
| 46 | public boolean isActive(); | |
| 47 | ||
| 48 | /** | |
| 49 | * This is the definition of the attribute | |
| 50 | */ | |
| 51 | public KrmsAttributeDefinitionContract getAttributeDefinition(); | |
| 52 | } |