1 | |
package org.kuali.student.lum.lu.entity; |
2 | |
|
3 | |
import javax.persistence.Entity; |
4 | |
import javax.persistence.JoinColumn; |
5 | |
import javax.persistence.ManyToOne; |
6 | |
import javax.persistence.Table; |
7 | |
|
8 | |
import org.kuali.student.common.entity.Attribute; |
9 | |
|
10 | 0 | @Entity |
11 | |
@Table(name = "KSLU_CLU_PUBL_TYPE_ATTR") |
12 | 0 | public class CluPublicationTypeAttribute extends Attribute<CluPublicationType> { |
13 | |
|
14 | |
@ManyToOne |
15 | |
@JoinColumn(name = "OWNER") |
16 | |
private CluPublicationType owner; |
17 | |
|
18 | |
@Override |
19 | |
public CluPublicationType getOwner() { |
20 | 0 | return owner; |
21 | |
} |
22 | |
|
23 | |
@Override |
24 | |
public void setOwner(CluPublicationType owner) { |
25 | 0 | this.owner = owner; |
26 | 0 | } |
27 | |
|
28 | |
} |