View Javadoc
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 javax.persistence.*;
19  import java.io.Serializable;
20  
21  @Deprecated
22  @Entity
23  @Table(name="KME_XSL_T")
24  public class Xsl implements Serializable {
25  
26      private static final long serialVersionUID = -5761311057726925895L;
27  
28      @Id
29  	@GeneratedValue(strategy = GenerationType.TABLE)
30      @Column(name="ID")
31      private Long xslId;
32  
33      @Lob
34      @Column(name="VAL")
35      private String value;
36  
37      @Column(name="CD")
38      private String code;
39      
40      @Version
41      @Column(name="VER_NBR")
42      protected Long versionNumber;
43  	
44  	public Xsl() {}
45  
46      public Long getXslId() {
47          return xslId;
48      }
49  
50      public void setXslId(Long xslId) {
51          this.xslId = xslId;
52      }
53  
54      public String getValue() {
55          return value;
56      }
57  
58      public void setValue(String value) {
59          this.value = value;
60      }
61  
62      public Long getVersionNumber() {
63          return versionNumber;
64      }
65  
66      public void setVersionNumber(Long versionNumber) {
67          this.versionNumber = versionNumber;
68      }
69  
70  	public String getCode() {
71  		return code;
72  	}
73  
74  	public void setCode(String code) {
75  		this.code = code;
76  	}
77  
78  }