View Javadoc

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.lrr.model;
13  
14  import org.kuali.student.r2.common.entity.BaseAttributeEntity;
15  import org.kuali.student.r2.common.infc.Attribute;
16  
17  import javax.persistence.Entity;
18  import javax.persistence.JoinColumn;
19  import javax.persistence.ManyToOne;
20  import javax.persistence.Table;
21  
22  @Entity
23  @Table(name = "KSEN_LRR_ATTR")
24  public class LrrAttributeEntity extends BaseAttributeEntity<LearningResultRecordEntity> {
25  
26  	public LrrAttributeEntity() {
27  		super();
28  	}
29  
30  	public LrrAttributeEntity(Attribute att, LearningResultRecordEntity owner) {
31  		super(att, owner);
32  	}
33  
34      
35  }