View Javadoc
1   /**
2    * Copyright 2005-2016 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 BaseJavaAttributeBo extends PersistableBusinessObjectBase implements BaseAttributeContract {
33  
34      private static final long serialVersionUID = -5827561613196341837L;
35      private String id;
36      private String attributeDefinitionId;
37      private String value;
38      private KrmsAttributeDefinitionBo attributeDefinition;
39  
40      @Override
41      public KrmsAttributeDefinitionContract getAttributeDefinition() {
42          return attributeDefinition;
43      }
44  
45      @Override
46      public String getAttributeDefinitionId() {
47          return attributeDefinition.getId();
48      }
49  
50      @Override
51      public String getId() {
52          return id;
53      }
54  
55      @Override
56      public String getValue() {
57          return value;
58      }
59  
60      public void setAttributeDefinition(KrmsAttributeDefinitionBo attributeDefinition) {
61          this.attributeDefinition = attributeDefinition;
62      }
63  
64      public void setAttributeDefinitionId(String attributeDefinitionId) {
65          this.attributeDefinitionId = attributeDefinitionId;
66      }
67  
68      public void setId(String id) {
69          this.id = id;
70      }
71  
72      public void setValue(String value) {
73          this.value = value;
74      }
75  
76  }