Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RemoveReplaceWorkgroup |
|
| 1.0;1 |
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 | 0 | 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 | 0 | return this.name; |
35 | } | |
36 | public void setName(String name) { | |
37 | 0 | this.name = name; |
38 | 0 | } |
39 | public String getType() { | |
40 | 0 | return this.type; |
41 | } | |
42 | public void setType(String type) { | |
43 | 0 | this.type = type; |
44 | 0 | } |
45 | public String getWarning() { | |
46 | 0 | return this.warning; |
47 | } | |
48 | public void setWarning(String warning) { | |
49 | 0 | this.warning = warning; |
50 | 0 | } |
51 | public boolean isSelected() { | |
52 | 0 | return this.selected; |
53 | } | |
54 | public void setSelected(boolean selected) { | |
55 | 0 | this.selected = selected; |
56 | 0 | } |
57 | public String getId() { | |
58 | 0 | return this.id; |
59 | } | |
60 | public void setId(String id) { | |
61 | 0 | this.id = id; |
62 | 0 | } |
63 | public boolean isDisabled() { | |
64 | 0 | return this.disabled; |
65 | } | |
66 | public void setDisabled(boolean disabled) { | |
67 | 0 | this.disabled = disabled; |
68 | 0 | } |
69 | ||
70 | } |