001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/msgcntr/trunk/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/AreaControlPermissionImpl.java $
003: * $Id: AreaControlPermissionImpl.java 9227 2006-05-15 15:02:42Z cwen@iupui.edu $
004: ***********************************************************************************
005: *
006: * Copyright (c) 2003, 2004, 2005, 2006 The Sakai Foundation.
007: *
008: * Licensed under the Educational Community License, Version 1.0 (the "License");
009: * you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at
011: *
012: * http://www.opensource.org/licenses/ecl1.php
013: *
014: * Unless required by applicable law or agreed to in writing, software
015: * distributed under the License is distributed on an "AS IS" BASIS,
016: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: * See the License for the specific language governing permissions and
018: * limitations under the License.
019: *
020: **********************************************************************************/package org.sakaiproject.component.app.messageforums.dao.hibernate;
021:
022: import org.sakaiproject.api.app.messageforums.AreaControlPermission;
023:
024: public class AreaControlPermissionImpl implements AreaControlPermission {
025:
026: private String role;
027:
028: private Boolean postToGradebook;
029:
030: private Boolean newForum;
031:
032: private Boolean newTopic;
033:
034: private Boolean newResponse;
035:
036: private Boolean responseToResponse;
037:
038: private Boolean movePostings;
039:
040: private Boolean changeSettings;
041:
042: public Boolean getPostToGradebook() {
043: return postToGradebook;
044: }
045:
046: public void setPostToGradebook(Boolean postToGradebook) {
047: this .postToGradebook = postToGradebook;
048: }
049:
050: public Boolean getChangeSettings() {
051: return changeSettings;
052: }
053:
054: public void setChangeSettings(Boolean changeSettings) {
055: this .changeSettings = changeSettings;
056: }
057:
058: public Boolean getMovePostings() {
059: return movePostings;
060: }
061:
062: public void setMovePostings(Boolean movePostings) {
063: this .movePostings = movePostings;
064: }
065:
066: public Boolean getNewForum() {
067: return newForum;
068: }
069:
070: public void setNewForum(Boolean newForum) {
071: this .newForum = newForum;
072: }
073:
074: public Boolean getNewResponse() {
075: return newResponse;
076: }
077:
078: public void setNewResponse(Boolean newResponse) {
079: this .newResponse = newResponse;
080: }
081:
082: public Boolean getNewTopic() {
083: return newTopic;
084: }
085:
086: public void setNewTopic(Boolean newTopic) {
087: this .newTopic = newTopic;
088: }
089:
090: public Boolean getResponseToResponse() {
091: return responseToResponse;
092: }
093:
094: public void setResponseToResponse(Boolean responseToResponse) {
095: this .responseToResponse = responseToResponse;
096: }
097:
098: public String getRole() {
099: return role;
100: }
101:
102: public void setRole(String role) {
103: this.role = role;
104: }
105:
106: }
|