Coverage Report - org.kuali.student.enrollment.class1.hold.model.IssueRestrictionRelationEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
IssueRestrictionRelationEntity
0%
0/7
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl1.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.enrollment.class1.hold.model;
 17  
 
 18  
 import javax.persistence.Entity;
 19  
 import javax.persistence.JoinColumn;
 20  
 import javax.persistence.ManyToOne;
 21  
 import javax.persistence.Table;
 22  
 
 23  
 import org.kuali.student.r2.common.entity.MetaEntity;
 24  
 
 25  
 /**
 26  
  * Entity class to hold an instance of a Issue-Restriction relationship
 27  
  *
 28  
  */
 29  
 @Entity
 30  
 @Table(name = "KSEN_ISSRESTRCTN_RELTN")
 31  0
 public class IssueRestrictionRelationEntity extends MetaEntity {
 32  
 
 33  
     @ManyToOne
 34  
     @JoinColumn(name = "ISSUE_ID")
 35  
     private IssueEntity issue;
 36  
     
 37  
     @ManyToOne
 38  
     @JoinColumn(name = "RESTRICTION_ID")
 39  
     private RestrictionEntity restriction;
 40  
 
 41  
     public IssueEntity getIssue() {
 42  0
         return issue;
 43  
     }
 44  
 
 45  
     public void setIssue(IssueEntity issue) {
 46  0
         this.issue = issue;
 47  0
     }
 48  
 
 49  
     public RestrictionEntity getRestriction() {
 50  0
         return restriction;
 51  
     }
 52  
 
 53  
     public void setRestriction(RestrictionEntity restriction) {
 54  0
         this.restriction = restriction;
 55  0
     }
 56  
     
 57  
 }