View Javadoc
1   package org.kuali.ole.pojo;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: pvsubrah
6    * Date: 4/9/12
7    * Time: 5:28 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class ProfileAttribute {
11      private Integer id;
12      private String agendaName;
13      private String attributeName;
14      private String attributeValue;
15      private String isSystemValue;
16  
17      public String getSystemValue() {
18          return isSystemValue;
19      }
20  
21      public void setSystemValue(String systemValue) {
22          isSystemValue = systemValue;
23      }
24  
25      public Integer getId() {
26          return id;
27      }
28  
29      public void setId(Integer id) {
30          this.id = id;
31      }
32  
33      public String getAgendaName() {
34          return agendaName;
35      }
36  
37      public void setAgendaName(String agendaName) {
38          this.agendaName = agendaName;
39      }
40  
41      public String getAttributeName() {
42          return attributeName;
43      }
44  
45      public void setAttributeName(String attributeName) {
46          this.attributeName = attributeName;
47      }
48  
49      public String getAttributeValue() {
50          return attributeValue;
51      }
52  
53      public void setAttributeValue(String attributeValue) {
54          this.attributeValue = attributeValue;
55      }
56  }