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.common.entity.Attribute;
24
25 @Entity
26 @Table(name = "KSLU_CLUCLU_RELTN_ATTR")
27 public class CluCluRelationAttribute extends Attribute<CluCluRelation> {
28 @ManyToOne
29 @JoinColumn(name = "OWNER")
30 private CluCluRelation owner;
31
32 @Override
33 public CluCluRelation getOwner() {
34 return owner;
35 }
36
37 @Override
38 public void setOwner(CluCluRelation owner) {
39 this.owner = owner;
40 }
41 }