| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| BaseAttributeBo |
|
| 0.0;0 |
| 1 | /** | |
| 2 | * Copyright 2005-2011 The Kuali Foundation | |
| 3 | * | |
| 4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
| 5 | * you may not use this file except in compliance with the License. | |
| 6 | * You may obtain a copy of the License at | |
| 7 | * | |
| 8 | * http://www.opensource.org/licenses/ecl2.php | |
| 9 | * | |
| 10 | * Unless required by applicable law or agreed to in writing, software | |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 13 | * See the License for the specific language governing permissions and | |
| 14 | * limitations under the License. | |
| 15 | */ | |
| 16 | package org.kuali.rice.krms.impl.repository | |
| 17 | ||
| 18 | import org.kuali.rice.krad.bo.PersistableBusinessObjectBase | |
| 19 | import org.kuali.rice.krms.api.repository.BaseAttributeContract | |
| 20 | import org.kuali.rice.krms.api.repository.type.KrmsAttributeDefinitionContract; | |
| 21 | ||
| 22 | /** | |
| 23 | * This class contains the common elements of a KRMS attribute. | |
| 24 | * <p> | |
| 25 | * Attributes provide a way to attach custom data to an entity based on that entity's type. | |
| 26 | * Rules, Actions, Contexts, Agendas and Term Resolvers have their own specific | |
| 27 | * attribute types. This class contains their common fields. | |
| 28 | * | |
| 29 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
| 30 | * | |
| 31 | */ | |
| 32 | public class BaseAttributeBo extends PersistableBusinessObjectBase implements BaseAttributeContract { | |
| 33 | ||
| 34 | def String id | |
| 35 | def String attributeDefinitionId | |
| 36 | def String value | |
| 37 | def KrmsAttributeDefinitionBo attributeDefinition | |
| 38 | ||
| 39 | @Override | |
| 40 | public KrmsAttributeDefinitionContract getAttributeDefinition() { | |
| 41 | 72 | return attributeDefinition |
| 42 | } | |
| 43 | } |