View Javadoc

1   /**
2    * Copyright 2010 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.student.common.ui.server.applicationstate.entity;
17  
18  import javax.persistence.Column;
19  import javax.persistence.Entity;
20  import javax.persistence.Id;
21  import javax.persistence.PrePersist;
22  import javax.persistence.Table;
23  
24  import org.kuali.student.common.util.UUIDHelper;
25  
26  @Entity
27  @Table(name = "KSAP_KEY_VALUE_T") 
28  public class KeyValuePair {
29  	@Id
30      @Column(name = "ID")
31  	private String id;
32  
33  	@Column(name = "APP_STATE_KEY", nullable=false)
34  	private String key;
35  
36  	@Column(name = "VALUE", length=2000, nullable=false)
37  	private String value;
38  
39  	public KeyValuePair() {
40  	}
41  
42  	public KeyValuePair(String key, String value) {
43  		this.key = key;
44  		this.value = value;
45  	}
46  
47  	/**
48  	 * AutoGenerate the Id
49  	 */
50  	@PrePersist
51  	public void prePersist() {
52  		this.id = UUIDHelper.genStringUUID(this.id);
53  	}
54  
55  	public String getId() {
56  		return id;
57  	}
58  
59  	public String getKey() {
60  		return key;
61  	}
62  
63  	public void setKey(String key) {
64  		this.key = key;
65  	}
66  
67  	public String getValue() {
68  		return value;
69  	}
70  
71  	public void setValue(String value) {
72  		this.value = value;
73  	}
74  
75  	@Override
76  	public String toString() {
77  		return "KeyValuePair[id=" + id + ", key=" + key + ", value=" + value + "]";
78  	}
79  }