01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/mailtool/tags/sakai_2-4-1/mailtool/src/java/org/sakaiproject/tool/mailtool/Configuration.java $
03: * $Id: Configuration.java 27662 2007-03-22 19:44:57Z kimsooil@bu.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2006, 2007 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.tool.mailtool;
21:
22: /**
23: * Configuration for "show renamining role" in Mailtool options
24: *
25: * @author kimsooil
26: *
27: */
28: public class Configuration {
29:
30: private int id;
31: private String rid;
32: private String realmid;
33: private String singular;
34: private String singularNew;
35: private String plural;
36: private String pluralNew;
37:
38: public Configuration() {
39: }
40:
41: public int getId() {
42: return id;
43: }
44:
45: public void setId(int id) {
46: this .id = id;
47: }
48:
49: public String getRoleId() {
50: return rid;
51: }
52:
53: public void setRoleId(String rid) {
54: this .rid = rid;
55: }
56:
57: public String getRealmid() {
58: return realmid;
59: }
60:
61: public void setRealmid(String r) {
62: this .realmid = r;
63: }
64:
65: public String getSingular() {
66: return singular;
67: }
68:
69: public void setSingular(String s) {
70: this .singular = s;
71: }
72:
73: public String getPlural() {
74: return plural;
75: }
76:
77: public void setPlural(String p) {
78: this .plural = p;
79: }
80:
81: public String getSingularNew() {
82: return singularNew;
83: }
84:
85: public void setSingularNew(String s) {
86: this .singularNew = s;
87: }
88:
89: public String getPluralNew() {
90: return pluralNew;
91: }
92:
93: public void setPluralNew(String p) {
94: this.pluralNew = p;
95: }
96: }
|