Coverage Report - org.kuali.rice.kns.bo.LookupResults
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupResults
0%
0/4
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  * 
 4  
  * Licensed under the Educational Community License, Version 2.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/ecl2.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.rice.kns.bo;
 17  
 
 18  
 import javax.persistence.FetchType;
 19  
 import javax.persistence.Basic;
 20  
 import javax.persistence.Lob;
 21  
 import javax.persistence.Version;
 22  
 import javax.persistence.TemporalType;
 23  
 import javax.persistence.Temporal;
 24  
 import javax.persistence.Column;
 25  
 import javax.persistence.Id;
 26  
 import javax.persistence.CascadeType;
 27  
 import javax.persistence.Table;
 28  
 import javax.persistence.Entity;
 29  
 
 30  
 @Entity
 31  
 @Table(name="KRNS_LOOKUP_RSLT_T")
 32  0
 public class LookupResults extends MultipleValueLookupMetadata {
 33  
     @Lob
 34  
         @Basic(fetch=FetchType.LAZY)
 35  
         @Column(name="SERIALZD_RSLTS")
 36  
         private String serializedLookupResults;
 37  
 
 38  
     public String getSerializedLookupResults() {
 39  0
         return serializedLookupResults;
 40  
     }
 41  
 
 42  
     public void setSerializedLookupResults(String serializedLookupResults) {
 43  0
         this.serializedLookupResults = serializedLookupResults;
 44  0
     }
 45  
 }
 46