Coverage Report - org.kuali.student.enrollment.class1.lrc.model.ResultValuesGroupAttributeEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
ResultValuesGroupAttributeEntity
0%
0/9
N/A
1
 
 1  
 package org.kuali.student.enrollment.class1.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  0
 @Entity
 30  
 @Table(name = "KSEN_LRC_RES_VAL_GRP_ATTR")
 31  
 public class ResultValuesGroupAttributeEntity extends BaseAttributeEntity<ResultValuesGroupEntity> {
 32  
 
 33  
     @ManyToOne
 34  
     @JoinColumn(name = "OWNER")
 35  
     private ResultValuesGroupEntity owner;
 36  
 
 37  0
     public ResultValuesGroupAttributeEntity() {}
 38  
 
 39  
     public ResultValuesGroupAttributeEntity(String key, String value) {
 40  0
         super(key, value);
 41  0
     }
 42  
 
 43  
     public ResultValuesGroupAttributeEntity(Attribute att) {
 44  0
         super(att);
 45  0
     }
 46  
 
 47  
     @Override
 48  
     public void setOwner(ResultValuesGroupEntity owner) {
 49  0
         this.owner = owner;
 50  0
     }
 51  
 
 52  
     @Override
 53  
     public ResultValuesGroupEntity getOwner() {
 54  0
         return owner;
 55  
     }
 56  
 }