1 /**
2 * Copyright 2010 The Kuali Foundation Licensed under the Educational Community
3 * License, Version 2.0 (the "License"); you may not use this file except in
4 * compliance with the License. You may obtain a copy of the License at
5 * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or
6 * agreed to in writing, software distributed under the License is distributed
7 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
8 * express or implied. See the License for the specific language governing
9 * permissions and limitations under the License.
10 */
11
12 package org.kuali.student.enrollment.class1.lpr.model;
13
14 import javax.persistence.Entity;
15 import javax.persistence.JoinColumn;
16 import javax.persistence.ManyToOne;
17 import javax.persistence.Table;
18
19 import org.kuali.student.r2.common.entity.BaseAttributeEntity;
20 import org.kuali.student.r2.common.infc.Attribute;
21
22 @Entity
23 @Table(name = "KSEN_LPR_ATTR")
24 public class LprAttributeEntity extends BaseAttributeEntity<LprEntity> {
25
26 public LprAttributeEntity() {
27 super();
28 }
29
30 public LprAttributeEntity(Attribute att, LprEntity owner) {
31 super(att, owner);
32 }
33
34
35
36 }