01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/msgcntr/trunk/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/AreaControlPermission.java $
03: * $Id: AreaControlPermission.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.api.app.messageforums;
21:
22: public interface AreaControlPermission {
23:
24: public Boolean getPostToGradebook();
25:
26: public void setPostToGradebook(Boolean postToGradebook);
27:
28: public Boolean getChangeSettings();
29:
30: public void setChangeSettings(Boolean changeSettings);
31:
32: public Boolean getMovePostings();
33:
34: public void setMovePostings(Boolean movePostings);
35:
36: public Boolean getNewForum();
37:
38: public void setNewForum(Boolean newForum);
39:
40: public Boolean getNewResponse();
41:
42: public void setNewResponse(Boolean newResponse);
43:
44: public Boolean getNewTopic();
45:
46: public void setNewTopic(Boolean newTopic);
47:
48: public Boolean getResponseToResponse();
49:
50: public void setResponseToResponse(Boolean responseToResponse);
51:
52: public String getRole();
53:
54: public void setRole(String role);
55:
56: }
|