View Javadoc
1   /**
2    * Copyright 2005-2016 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.krms.impl.repository;
17  
18  import org.kuali.rice.core.api.mo.common.Versioned;
19  
20  import java.io.Serializable;
21  
22  public class ContextValidEventBo implements Versioned, Serializable {
23  
24      private static final long serialVersionUID = 1l;
25  
26      private String id;
27      private String contextId;
28      private String eventName;
29      private Long versionNumber;
30  
31      public String getId() {
32          return id;
33      }
34  
35      public void setId(String id) {
36          this.id = id;
37      }
38  
39      public String getContextId() {
40          return contextId;
41      }
42  
43      public void setContextId(String contextId) {
44          this.contextId = contextId;
45      }
46  
47      public String getEventName() {
48          return eventName;
49      }
50  
51      public void setEventName(String eventName) {
52          this.eventName = eventName;
53      }
54  
55      public Long getVersionNumber() {
56          return versionNumber;
57      }
58  
59      public void setVersionNumber(Long versionNumber) {
60          this.versionNumber = versionNumber;
61      }
62  }