View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: divyaj
6    * Date: 11/22/13
7    * Time: 11:42 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  /**
11   * Copyright 2005-2013 The Kuali Foundation
12   *
13   * Licensed under the Educational Community License, Version 2.0 (the "License");
14   * you may not use this file except in compliance with the License.
15   * You may obtain a copy of the License at
16   *
17   * http://www.opensource.org/licenses/ecl2.php
18   *
19   * Unless required by applicable law or agreed to in writing, software
20   * distributed under the License is distributed on an "AS IS" BASIS,
21   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22   * See the License for the specific language governing permissions and
23   * limitations under the License.
24   */
25  
26  
27  import javax.persistence.Column;
28  import javax.persistence.Entity;
29  import javax.persistence.Id;
30  import javax.persistence.Table;
31  
32  import org.kuali.rice.kim.api.identity.CodedAttribute;
33  import org.kuali.rice.kim.api.identity.CodedAttributeContract;
34  import org.kuali.rice.kim.framework.identity.employment.EntityEmploymentStatusEbo;
35  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
36  
37  
38  public class OleEntityEmploymentStatusBo extends PersistableBusinessObjectBase {
39  
40      String code;
41  
42      String name;
43  
44      boolean active;
45  
46      String sortCode;
47  
48      public String getCode() {
49          return code;
50      }
51  
52      public void setCode(String code) {
53          this.code = code;
54      }
55  
56      public String getName() {
57          return name;
58      }
59  
60      public void setName(String name) {
61          this.name = name;
62      }
63  
64      public boolean isActive() {
65          return active;
66      }
67  
68      public void setActive(boolean active) {
69          this.active = active;
70      }
71  
72      public String getSortCode() {
73          return sortCode;
74      }
75  
76      public void setSortCode(String sortCode) {
77          this.sortCode = sortCode;
78      }
79  }
80