01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/msgcntr/trunk/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/TopicControlPermissionImpl.java $
03: * $Id: TopicControlPermissionImpl.java 9227 2006-05-15 15:02:42Z cwen@iupui.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2003, 2004, 2005, 2006 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.component.app.messageforums.dao.hibernate;
21:
22: import org.sakaiproject.api.app.messageforums.TopicControlPermission;
23:
24: public class TopicControlPermissionImpl implements
25: TopicControlPermission {
26:
27: private String role;
28:
29: private Boolean newResponse;
30:
31: private Boolean responseToResponse;
32:
33: private Boolean movePostings;
34:
35: private Boolean changeSettings;
36:
37: private Boolean postToGradebook;
38:
39: public Boolean getPostToGradebook() {
40: return postToGradebook;
41: }
42:
43: public void setPostToGradebook(Boolean postToGradebook) {
44: this .postToGradebook = postToGradebook;
45: }
46:
47: public Boolean getChangeSettings() {
48: return changeSettings;
49: }
50:
51: public void setChangeSettings(Boolean changeSettings) {
52: this .changeSettings = changeSettings;
53: }
54:
55: public Boolean getMovePostings() {
56: return movePostings;
57: }
58:
59: public void setMovePostings(Boolean movePostings) {
60: this .movePostings = movePostings;
61: }
62:
63: public Boolean getNewResponse() {
64: return newResponse;
65: }
66:
67: public void setNewResponse(Boolean newResponse) {
68: this .newResponse = newResponse;
69: }
70:
71: public Boolean getResponseToResponse() {
72: return responseToResponse;
73: }
74:
75: public void setResponseToResponse(Boolean responseToResponse) {
76: this .responseToResponse = responseToResponse;
77: }
78:
79: public String getRole() {
80: return role;
81: }
82:
83: public void setRole(String role) {
84: this.role = role;
85: }
86:
87: }
|