View Javadoc

1   /*
2    * Copyright 2007 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.removereplace.web;
17  
18  
19  /**
20   * Represents an input from the Remove/Replace User screen to remove or replace a user in a Workgroup.
21   *
22   * @author Kuali Rice Team (rice.collab@kuali.org)
23   */
24  public class RemoveReplaceWorkgroup {
25  
26      private String id;
27      private String name;
28      private String type;
29      private String warning;
30      private boolean selected;
31      private boolean disabled;
32  
33      public String getName() {
34          return this.name;
35      }
36      public void setName(String name) {
37          this.name = name;
38      }
39      public String getType() {
40          return this.type;
41      }
42      public void setType(String type) {
43          this.type = type;
44      }
45      public String getWarning() {
46          return this.warning;
47      }
48      public void setWarning(String warning) {
49          this.warning = warning;
50      }
51      public boolean isSelected() {
52          return this.selected;
53      }
54      public void setSelected(boolean selected) {
55          this.selected = selected;
56      }
57      public String getId() {
58          return this.id;
59      }
60      public void setId(String id) {
61          this.id = id;
62      }
63      public boolean isDisabled() {
64          return this.disabled;
65      }
66      public void setDisabled(boolean disabled) {
67          this.disabled = disabled;
68      }
69  
70  }