| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.kew.removereplace.web; |
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 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 | |
} |