|
SAP NetWeaver 7.30 SP01 KMC | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IForumPermissionManager
Entry point for managing permissions in the forums application.
IForumPermission| Method Summary | |
|---|---|
void |
addCategoryPermissionToAnonymousUser(long permission,
boolean additive,
long categoryID)
Adds category permission to anonymous user |
void |
addCategoryPermissionToGroup(long permission,
boolean additive,
String groupID,
long categoryID)
Adds category permission to group |
void |
addCategoryPermissionToRegisteredUser(long permission,
boolean additive,
long categoryID)
Adds category permission to registered user |
void |
addCategoryPermissionToUser(long permission,
boolean additive,
String userID,
long categoryID)
Adds category permission to user |
void |
addForumPermissionToAnonymousUser(long permission,
boolean additive,
long forumID)
Adds forum permission to anonymous user |
void |
addForumPermissionToGroup(long permission,
boolean additive,
String groupID,
long forumID)
Adds forum permission to group |
void |
addForumPermissionToRegisteredUser(long permission,
boolean additive,
long forumID)
Adds forum permission to registered user |
void |
addForumPermissionToRole(long permission,
boolean additive,
String roleID,
long forumID)
Adds forum permission to role |
void |
addForumPermissionToUser(long permission,
boolean additive,
String userID,
long forumID)
Adds forum permission to user |
void |
addPermissionToAnonymousUser(long permission,
boolean additive)
Adds permission to anonymous user |
void |
addPermissionToGroup(long permission,
boolean additive,
String groupID)
Adds permission to group |
void |
addPermissionToRegisteredUser(long permission,
boolean additive)
Adds permission to registered user |
void |
addPermissionToUser(long permission,
boolean additive,
String userID)
Adds permission to user |
String[] |
allGroupsWithInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Retrieves all groups with inherited permission on category |
String[] |
allGroupsWithInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
Retrieves all groups with inherited permission on forum |
String[] |
allUsersWithInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Retrieves all users with inherited permission on category |
String[] |
allUsersWithInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
Retrieves all users with inherited permission on forum |
boolean |
anonymousUserHasInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Checks if anonymous user has inherited permission on category |
boolean |
anonymousUserHasInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
Checks if anonymous user has permission of forum |
boolean |
anonymousUserHasPermission(long permission,
boolean additive)
Checks if anonymous user has permission |
boolean |
anonymousUserHasPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Checks if anonymous user has permission on category |
boolean |
anonymousUserHasPermissionOnForum(long permission,
boolean additive,
long forumID)
Checks if anonymous user has permission on forum |
String[] |
groupsWithPermission(long permission,
boolean additive)
Retrieves groups with permission |
String[] |
groupsWithPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Retrieves groups with permission on category |
String[] |
groupsWithPermissionOnForum(long permission,
boolean additive,
long forumID)
Retrieves groups with permission on forums |
boolean |
isAuthorized(long permission)
Checks if context user is authorised to given permission. |
boolean |
isAuthorizedOnCategory(long permission,
long categoryID)
Checks if context user is authorised on category |
boolean |
isAuthorizedOnForum(long permission,
long forumID)
Checks if context user is authorised on forum |
boolean |
isUserAuthorized(long permission,
String userID)
Checks if user is authorised |
boolean |
isUserAuthorizedOnCategory(long permission,
String userID,
long categoryID)
Checks if user is authorised on category |
boolean |
isUserAuthorizedOnForum(long permission,
String userID,
long forumID)
Checks if user is authorised on forum |
boolean |
registeredUserHasInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Checks if registered user has inherited permission on category |
boolean |
registeredUserHasInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
Checks if registered user has inherited permission on forum |
boolean |
registeredUserHasPermission(long permission,
boolean additive)
Checks if registered user has permission |
boolean |
registeredUserHasPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Checks if registered user has permission on category |
boolean |
registeredUserHasPermissionOnForum(long permission,
boolean additive,
long forumID)
Checks if registered user has permission on forum |
void |
removeCategoryPermissionFromGroup(long permission,
boolean additive,
String groupID,
long categoryID)
Removes category permission from group |
void |
removeCategoryPermissionFromUser(long permission,
boolean additive,
String userID,
long categoryID)
Adds category permission to user |
void |
removeForumPermissionFromGroup(long permission,
boolean additive,
String groupID,
long forumID)
Removes forum permission from group |
void |
removeForumPermissionFromRole(long permission,
boolean additive,
String roleID,
long forumID)
Removes forum permission from role |
void |
removeForumPermissionFromUser(long permission,
boolean additive,
String userID,
long forumID)
Removes forum permission of user |
void |
removePermissionFromGroup(long permission,
boolean additive,
String groupID)
Removes permission of group |
void |
removePermissionFromUser(long permission,
boolean additive,
String userID)
Removes permission of user |
String[] |
usersWithPermission(long permission,
boolean additive)
Returns user names of users with permission |
int |
usersWithPermissionCount(long permission,
boolean additive)
Returns the users with specified permission |
int |
usersWithPermissionCountOnCategory(long permission,
boolean additive,
long categoryID)
Returns the count of users with permission on category |
int |
usersWithPermissionCountOnForum(long permission,
boolean additive,
long forumID)
Returns the count of users with permission of forum |
String[] |
usersWithPermissionOnCategory(long permission,
boolean additive,
long categoryID)
Returns the user names of users with permissions on category |
String[] |
usersWithPermissionOnForum(long permission,
boolean additive,
long forumID)
Returns the user names of users with permission on forum |
| Method Detail |
|---|
void addPermissionToUser(long permission,
boolean additive,
String userID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionuserID - the user name
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removePermissionFromUser(long permission,
boolean additive,
String userID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionuserID - the user name
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addPermissionToGroup(long permission,
boolean additive,
String groupID)
throws com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissiongroupID - the group name
com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removePermissionFromGroup(long permission,
boolean additive,
String groupID)
throws com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissiongroupID - the group name
com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addForumPermissionToUser(long permission,
boolean additive,
String userID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionuserID - the user nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removeForumPermissionFromUser(long permission,
boolean additive,
String userID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionuserID - the user nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addCategoryPermissionToUser(long permission,
boolean additive,
String userID,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionuserID - the user namecategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removeCategoryPermissionFromUser(long permission,
boolean additive,
String userID,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionuserID - the user namecategoryID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedExceptionboolean isAuthorized(long permission)
permission - the permission
boolean isAuthorizedOnForum(long permission,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
permission - the permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
boolean isAuthorizedOnCategory(long permission,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
permission - the permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
boolean registeredUserHasPermission(long permission,
boolean additive)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permission
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean registeredUserHasPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
boolean registeredUserHasPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean anonymousUserHasPermission(long permission,
boolean additive)
permission - the permissionadditive - weather the user should be granted or revoked the specified permission
boolean anonymousUserHasPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
boolean anonymousUserHasPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
int usersWithPermissionCount(long permission,
boolean additive)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permission
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] usersWithPermission(long permission,
boolean additive)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permission
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
int usersWithPermissionCountOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] usersWithPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
int usersWithPermissionCountOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] usersWithPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather the user should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removeCategoryPermissionFromGroup(long permission,
boolean additive,
String groupID,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissiongroupID - the group namecategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addForumPermissionToGroup(long permission,
boolean additive,
String groupID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissiongroupID - the group nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removeForumPermissionFromGroup(long permission,
boolean additive,
String groupID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissiongroupID - the group nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addCategoryPermissionToGroup(long permission,
boolean additive,
String groupID,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissiongroupID - the group namecategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.GroupNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean isUserAuthorized(long permission,
String userID)
throws com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionuserID - the user name
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean isUserAuthorizedOnCategory(long permission,
String userID,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionuserID - the user namecategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean isUserAuthorizedOnForum(long permission,
String userID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionuserID - the user nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UserNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addForumPermissionToRole(long permission,
boolean additive,
String roleID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.RoleNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionroleID - the role nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.RoleNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void removeForumPermissionFromRole(long permission,
boolean additive,
String roleID,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.RoleNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionroleID - the role nameforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.RoleNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] groupsWithPermission(long permission,
boolean additive)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permission
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] groupsWithPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] groupsWithPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] allGroupsWithInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] allUsersWithInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] allGroupsWithInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
String[] allUsersWithInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean anonymousUserHasInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean anonymousUserHasInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean registeredUserHasInheritedPermissionOnForum(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
boolean registeredUserHasInheritedPermissionOnCategory(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException,
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.ForumCategoryNotFoundException
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addPermissionToRegisteredUser(long permission,
boolean additive)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permission
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addCategoryPermissionToRegisteredUser(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addForumPermissionToRegisteredUser(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addPermissionToAnonymousUser(long permission,
boolean additive)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permission
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addCategoryPermissionToAnonymousUser(long permission,
boolean additive,
long categoryID)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissioncategoryID - the category unique identifier
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
void addForumPermissionToAnonymousUser(long permission,
boolean additive,
long forumID)
throws com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
permission - the permissionadditive - weather should be granted or revoked the specified permissionforumID - the forum unique identifier
com.sap.netweaver.coll.forums.exceptions.UnauthorizedException
|
SAP NetWeaver 7.30 SP01 KMC | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||