Coverage Report - org.kuali.mobility.xsl.entity.Xsl
 
Classes in this File Line Coverage Branch Coverage Complexity
Xsl
0%
0/13
N/A
1
 
 1  
 /**
 2  
  * Copyright 2011 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.mobility.xsl.entity;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  
 import javax.persistence.Column;
 21  
 import javax.persistence.Entity;
 22  
 import javax.persistence.GeneratedValue;
 23  
 import javax.persistence.GenerationType;
 24  
 import javax.persistence.Id;
 25  
 import javax.persistence.Lob;
 26  
 import javax.persistence.Table;
 27  
 import javax.persistence.Version;
 28  
 
 29  
 @Entity
 30  
 @Table(name="KME_XSL_T")
 31  
 public class Xsl implements Serializable {
 32  
 
 33  
     private static final long serialVersionUID = -5761311057726925895L;
 34  
 
 35  
     @Id
 36  
         @GeneratedValue(strategy = GenerationType.TABLE)
 37  
     @Column(name="ID")
 38  
     private Long xslId;
 39  
 
 40  
     @Lob
 41  
     @Column(name="VAL")
 42  
     private String value;
 43  
 
 44  
     @Column(name="CD")
 45  
     private String code;
 46  
     
 47  
     @Version
 48  
     @Column(name="VER_NBR")
 49  
     protected Long versionNumber;
 50  
         
 51  0
         public Xsl() {}
 52  
 
 53  
     public Long getXslId() {
 54  0
         return xslId;
 55  
     }
 56  
 
 57  
     public void setXslId(Long xslId) {
 58  0
         this.xslId = xslId;
 59  0
     }
 60  
 
 61  
     public String getValue() {
 62  0
         return value;
 63  
     }
 64  
 
 65  
     public void setValue(String value) {
 66  0
         this.value = value;
 67  0
     }
 68  
 
 69  
     public Long getVersionNumber() {
 70  0
         return versionNumber;
 71  
     }
 72  
 
 73  
     public void setVersionNumber(Long versionNumber) {
 74  0
         this.versionNumber = versionNumber;
 75  0
     }
 76  
 
 77  
         public String getCode() {
 78  0
                 return code;
 79  
         }
 80  
 
 81  
         public void setCode(String code) {
 82  0
                 this.code = code;
 83  0
         }
 84  
 
 85  
 }