View Javadoc

1   /**
2    * Copyright 2005-2013 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.kew.useroptions;
17  
18  import javax.persistence.Column;
19  import javax.persistence.Entity;
20  import javax.persistence.Id;
21  import javax.persistence.IdClass;
22  import javax.persistence.Table;
23  import javax.persistence.Version;
24  
25  import org.kuali.rice.kew.api.preferences.Preferences;
26  
27  
28  /**
29   * An option defined for a user.  These are used to store user {@link Preferences}.
30   *
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  @IdClass(UserOptionsId.class)
34  @Entity
35  @Table(name="KREW_USR_OPTN_T")
36  public class UserOptions implements Comparable {
37  
38  	@Id
39  	@Column(name="PRNCPL_ID")
40  	private String workflowId;
41  
42  	@Id
43  	@Column(name="PRSN_OPTN_ID")
44  	private String optionId;
45  
46  	@Column(name="VAL")
47  	private String optionVal;
48  
49  	@Version
50  	@Column(name="VER_NBR")
51  	private Integer lockVerNbr;
52  
53  	public Integer getLockVerNbr() {
54  		return lockVerNbr;
55  	}
56  
57  	public String getOptionId() {
58  		return optionId;
59  	}
60  
61  	public String getOptionVal() {
62  		return optionVal;
63  	}
64  
65  	public String getWorkflowId() {
66  		return workflowId;
67  	}
68  
69  	public void setLockVerNbr(Integer integer) {
70  		lockVerNbr = integer;
71  	}
72  
73  	public void setOptionId(String string) {
74  		optionId = string;
75  	}
76  
77  	public void setOptionVal(String string) {
78  		optionVal = string;
79  	}
80  
81  	public void setWorkflowId(String string) {
82  	    workflowId = string;
83  	}
84  
85      /**
86       * Compares the given object is an instance of this class, then determines comparison based on the option id.
87       * @param o the object to compare with
88       * @return The value 0 if the argument is a string lexicographically equal to this string; a value less than 0 if
89       * the argument is a string lexicographically greater than this string; and a value greater than 0 if the argument
90       * is a string lexicographically less than this string.
91       */
92      @Override
93      public int compareTo(Object o) {
94          if (o instanceof UserOptions) {
95              return this.getOptionId().compareTo(((UserOptions)o).getOptionId());
96          }
97          return 0;
98      }
99  
100 }
101