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