1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.lum.lu.entity;
17
18 import javax.persistence.Entity;
19 import javax.persistence.JoinColumn;
20 import javax.persistence.ManyToOne;
21 import javax.persistence.Table;
22
23 import org.kuali.student.core.entity.Attribute;
24
25 @Entity
26 @Table(name = "KSLU_CLU_ADMIN_ORG_ATTR")
27 public class CluAdminOrgAttribute extends Attribute<CluAdminOrg> {
28
29 @ManyToOne
30 @JoinColumn(name = "OWNER")
31 private CluAdminOrg owner;
32
33 @Override
34 public CluAdminOrg getOwner() {
35 return owner;
36 }
37
38 @Override
39 public void setOwner(CluAdminOrg owner) {
40 this.owner = owner;
41 }
42
43 }