View Javadoc
1   /**
2    * Copyright 2005-2014 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.kim.bo.ui;
17  
18  import javax.persistence.Column;
19  import javax.persistence.Convert;
20  import javax.persistence.Embeddable;
21  import javax.persistence.MappedSuperclass;
22  import javax.persistence.Transient;
23  
24  import org.kuali.rice.krad.data.jpa.converters.BooleanYNConverter;
25  
26  /**
27   * This is a description of what this class does - shyu don't forget to fill this in. 
28   * 
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   *
31   */
32  @MappedSuperclass
33  public class KimDocumentBoActivatableBase  extends KimDocumentBoBase {
34  
35      private static final long serialVersionUID = 9042706897191231670L;
36  
37      @Column(name="ACTV_IND")
38  	@Convert(converter = BooleanYNConverter.class)
39      protected boolean active = true;
40  	
41  	@Transient
42  	protected boolean edit;
43  
44  	public boolean isActive() {
45  		return this.active;
46  	}
47  
48  	public void setActive(boolean active) {
49  		this.active = active;
50  	}
51  	
52  	public boolean isEdit() {
53  		return this.edit;
54  	}
55  
56  	public void setEdit(boolean edit) {
57  		this.edit = edit;
58  	}
59  }