Jive Forums API (5.5.20.2-oracle) Core Javadocs

Uses of Class
com.jivesoftware.base.UnauthorizedException

Packages that use UnauthorizedException
com.jivesoftware.base Base APIs and classes for Jive Software products. 
com.jivesoftware.forum Core interfaces and classes for Jive Forums. 
com.jivesoftware.forum.renderer   
 

Uses of UnauthorizedException in com.jivesoftware.base
 

Methods in com.jivesoftware.base that throw UnauthorizedException
 void Group.addAdministrator(User user)
          Grants administrator privileges of the group to a user.
 void PermissionsManager.addAnonymousUserPermission(PermissionType permissionType, long permission)
          Add a permission of the specified PermissionType for anonymous users.
 void Poll.addAnonymousVote(int index, java.lang.String uniqueID)
          Add a guest vote for an option in the poll.
 void PermissionsManager.addGroupPermission(Group group, PermissionType permissionType, long permission)
          Grants a group a particular permission.
 void Group.addMember(User user)
          Adds a member to the group.
 void Poll.addOption(java.lang.String value)
          Add a new option to the poll.
 void PermissionsManager.addRegisteredUserPermission(PermissionType permissionType, long permission)
          Add a permission of the specified PermissionType for registered users.
 void Roster.addUser(User user)
          Add a user to the roster.
 void PermissionsManager.addUserPermission(User user, PermissionType permissionType, long permission)
          Add a permission of the specified PermissionType for the specified user.
 void Poll.addUserVote(int index, User user)
          Add a user vote for an option in the poll.
 void Poll.changeAnonymousVote(int prevOptionIndex, int newOptionIndex, java.lang.String uniqueID)
          Change a guest vote.
 void Poll.changeUserVote(int prevOptionIndex, int newOptionIndex, User user)
          Change a user vote.
protected  void AuthFactory.checkAuthorization(AuthToken authToken, javax.servlet.http.HttpServletRequest request)
          Checks if the specified AuthToken is authorized.
protected  AuthToken AuthFactory.createAuthToken(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Creates AuthToken tokens based on information from servlet request and response objects.
protected abstract  AuthToken AuthFactory.createAuthToken(java.lang.String username, java.lang.String password)
          Creates AuthToken tokens for users.
 Poll PollManager.createPoll(int objectType, long objectID, User user, java.lang.String name)
          Create a new Poll.
 Presence PresenceManager.createPresence(User user, java.lang.String uid, java.lang.String IPAddress)
          Create a presence for a user.
protected  AuthToken AuthFactory.createSessionUserInfo(java.lang.String username, java.lang.String password, boolean autoLogin, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Concrete subclasses may wish to override this method to create session info as appropriate.
 void GroupManager.deleteGroup(Group group)
          Deletes a group from the system.
 void Poll.deleteOption(int index)
          Remove an option from the poll.
 void PollManager.deletePoll(Poll poll)
          Deletes a poll.
 void Group.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void User.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void UserManager.deleteUser(User user)
          Deletes a user.
 java.util.Iterator PollManager.getActivePolls(int objectType, long objectID)
          Returns an iterator of active polls associated with the object specified by the objectType and objectID.
static AuthToken AuthFactory.getAuthToken(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Returns the AuthToken token associated with the information in a servlet request and response object.
static AuthToken AuthFactory.getAuthToken(java.lang.String username, java.lang.String password)
          Returns the AuthToken token associated with the specified username and password.
 int PollManager.getLivePollCount(int objectType, long objectID)
          Returns a count of all live polls of a given type and object ID.
 java.util.Iterator PollManager.getLivePolls(int objectType, long objectID)
          Returns an iterator of live polls associated with the object specified by the objectType and objectID.
 int Roster.getOnlineUserCount()
          Returns the number of users in the roster who are currently online.
 java.util.Iterator Roster.getOnlineUsers()
          Returns an iterator of users in the roster who are currently online.
 java.lang.String User.getPasswordHash()
          Returns the user's password in hashed form.
 Poll PollManager.getPoll(long pollID)
          Returns the Poll specified by the poll ID.
 int PollManager.getPollCount(int objectType, long objectID)
          Returns an count of polls, both active and inactive, associated with the object specified by the objectType and objectID.
 java.util.Iterator PollManager.getPolls(int objectType, long objectID)
          Returns an iterator of polls, both active and inactive, associated with the object specified by the objectType and objectID.
 Roster PresenceManager.getRoster(User user)
          Returns the user's roster.
 int Roster.getTotalUserCount()
          Returns the total number of users in the roster.
 java.util.Iterator Roster.getUsers()
          Returns an iterator of users in this roster.
static AuthToken AuthFactory.loginUser(java.lang.String username, java.lang.String password, boolean autoLogin, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This method is a method for logging a user in and creating the appropriate session variables and/or cookies to keep state.
 void Group.removeAdministrator(User user)
          Revokes administrator privileges of the group to a user.
 void PermissionsManager.removeAllGroupPermissions(PermissionType permissionType)
          Revokes all group permissions.
 void PermissionsManager.removeAllUserPermissions(PermissionType permissionType)
          Removes all user permissions.
 void PermissionsManager.removeAnonymousUserPermission(PermissionType permissionType, long permission)
          Removes a permission of the specified PermissionType for anonymous users.
 void Poll.removeAnonymousVote(int prevOptionIndex, java.lang.String uniqueID)
          Remove a guest vote.
 void PermissionsManager.removeGroupPermission(Group group, PermissionType permissionType, long permission)
          Removes a permission of the specified PermissionType for a group.
 void Group.removeMember(User user)
          Removes a member from the group.
 void PermissionsManager.removeRegisteredUserPermission(PermissionType permissionType, long permission)
          Removes a permission of the specified PermissionType for registered users.
 void Roster.removeUser(User user)
          Remove a user from the roster.
 void PermissionsManager.removeUserPermission(User user, PermissionType permissionType, long permission)
          Removes a permission of the specified PermissionType for the specified user.
 void Poll.removeUserVote(int prevOptionIndex, User user)
          Remove a user vote.
 void Group.setCreationDate(java.util.Date creationDate)
          Sets the creation date of the group.
 void User.setCreationDate(java.util.Date creationDate)
          Sets the creation date of the user.
 void Group.setDescription(java.lang.String description)
          Sets the description of the group.
 void Poll.setDescription(java.lang.String description)
          Sets the description of the poll.
 void User.setEmail(java.lang.String email)
          Sets the user's email address.
 void User.setEmailVisible(boolean visible)
          Sets whether a user's email is visible to other users.
 void Poll.setEndDate(java.util.Date endDate)
          Sets the date the poll should end.
 void Poll.setExpirationDate(java.util.Date expireDate)
          Sets the date the poll should expire.
 void Presence.setLastUpdateTime(java.util.Date time)
          Set the time when the presence was last updated (when the user last visited).
 void Presence.setLastUpdateTime(long time)
          Sets the time when the presence was last updated (when the user last visited).
 void Poll.setMode(long mode, boolean enabled)
          Sets a mode to be enabled or disabled for the poll.
 void Group.setModificationDate(java.util.Date modificationDate)
          Sets the date the group was last modified.
 void User.setModificationDate(java.util.Date modificationDate)
          Sets the date the user was last modified.
 void Group.setName(java.lang.String name)
          Sets the name of the group.
 void Poll.setName(java.lang.String name)
          Sets the name of the poll.
 void User.setName(java.lang.String name)
          Sets the user's name.
 void User.setNameVisible(boolean visible)
          Sets whether a user's name is visible to other users.
 void PresenceManager.setOffline(Presence presence)
          Sets a presence to be offline which causes the presence to be removed from the system.
 void Poll.setOption(int index, java.lang.String value)
          Sets the text of the option at the specified index.
 void Poll.setOptionIndex(int currentIndex, int newIndex)
          Moves the option's index.
 void User.setPassword(java.lang.String password)
          Sets the users's password.
 void User.setPasswordHash(java.lang.String passwordHash)
          Sets the user's password in hashed form.
 void PresenceManager.setPresencesEnabled(boolean enabled)
          Sets whether presences are enabled on a global basis or not.
 void Group.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the group.
 void User.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the user.
 void Poll.setStartDate(java.util.Date startDate)
          Sets the date voting for the poll should start.
 void Presence.setStatus(int status)
          Sets the status of the user.
 

Uses of UnauthorizedException in com.jivesoftware.forum
 

Methods in com.jivesoftware.forum that throw UnauthorizedException
 void AttachmentManager.addAllowedType(java.lang.String contentType)
          Adds a content type to the list of explicitly allowed types.
 void AnnouncementManager.addAnnouncement(Announcement announcement)
          Adds an an announcement to the database.
 void RewardManager.addBankPoints(int numPoints)
          Allows administrators to add or substract an arbitrary number of reward points from all user's point banks.
 void RewardManager.addBankPoints(User user, int numPoints)
          Allows administrators to add or substract an arbitrary number of reward points from a user's point bank.
 void AttachmentManager.addDisallowedType(java.lang.String contentType)
          Adds a content type to the list of explicitly disallowed types.
 void InterceptorManager.addInterceptorClass(java.lang.String className)
          Installs a new class into the list of available interceptors for the system.
 void ForumThread.addMessage(ForumMessage parentMessage, ForumMessage newMessage)
          Adds a new message to this thread.
 void RatingManager.addRating(User user, ForumMessage message, Rating rating)
          Add a rating to the forum message.
 void RatingManager.addRating(User user, ForumThread thread, Rating rating)
          Add a rating to the forum thread.
 void TagManager.addTag(ContentTag tag, JiveContentObject contentObject)
          Associates a tag with this object
 void Forum.addThread(ForumThread thread)
          Adds a new thread to the forum.
 Announcement AnnouncementManager.createAnnouncement(User user)
          Creates a new system announcement.
 Announcement AnnouncementManager.createAnnouncement(User user, Forum forum)
          Creates a new forum announcement.
 Announcement AnnouncementManager.createAnnouncement(User user, ForumCategory category)
          Creates a new category announcement.
 Attachment ForumMessage.createAttachment(java.lang.String name, java.lang.String contentType, java.io.InputStream data)
          Creates a new attachment for this message.
 Attachment PrivateMessage.createAttachment(java.lang.String name, java.lang.String contentType, java.io.InputStream data)
          Creates a new attachment for this private message.
 Avatar AvatarManager.createAvatar(User owner, java.lang.String name, java.lang.String contentType, java.io.InputStream in)
          Creates a new avatar for a user allowing the user to specify an inputstream for the image.
 ForumCategory ForumCategory.createCategory(java.lang.String name, java.lang.String description)
          Creates a new ForumCategory as a sub-category of this category using the name and description.
 PrivateMessageFolder PrivateMessageManager.createFolder(User user, java.lang.String name)
          Creates a new folder.
abstract  Forum ForumFactory.createForum(java.lang.String name, java.lang.String description)
          Creates a new forum.
abstract  Forum ForumFactory.createForum(java.lang.String name, java.lang.String description, ForumCategory category)
          Creates a new forum in the specified category.
 ForumMessage Forum.createMessage(User user)
          Factory method to create a message as the specified user.
 PrivateMessage PrivateMessageManager.createMessage(User sender)
          Creates a new private message.
 Rating RatingManager.createRating(int score, java.lang.String description)
          Create a new rating with the specified attributes.
 StatusLevel StatusLevelManager.createStatusLevel(java.lang.String name, java.lang.String imagePath, Group group)
          Creates a new group based StatusLevel Level
 StatusLevel StatusLevelManager.createStatusLevel(java.lang.String name, java.lang.String imagePath, int minPoints, int maxPoints)
          Creates a new points based StatusLevel.
 ForumThread Forum.createThread(ForumMessage rootMessage)
          Factory method to create a new thread.
 Watch WatchManager.createWatch(User user, Forum forum)
          Create a watch on a forum for the specified user.
 Watch WatchManager.createWatch(User user, ForumCategory category)
          Create a watch on a category for the specified user.
 Watch WatchManager.createWatch(User user, ForumThread thread)
          Create a watch on a thread for the specified user.
 Watch WatchManager.createWatch(User user, User watchedUser)
          Create a watch on a user for the specified user.
 void AnnouncementManager.deleteAnnouncement(Announcement announcement)
          Deletes an announcement.
 void Announcement.deleteAttachment(Attachment attachment)
          Deletes an attachment that belongs to the announcement.
 void ForumMessage.deleteAttachment(Attachment attachment)
          Deletes an attachment that belongs to this message.
 void PrivateMessage.deleteAttachment(Attachment attachment)
          Deletes an attachment that belongs to this private message.
 void AvatarManager.deleteAvatar(Avatar avatar)
          Deletes an avatar from the system.
 void ForumCategory.deleteCategory(ForumCategory subCategory)
          Deletes a sub-category.
 void PrivateMessageManager.deleteFolder(PrivateMessageFolder folder)
          Deletes a folder.
 void ForumCategory.deleteForum(Forum forum)
          Deletes a forum and all of its content.
abstract  void ForumFactory.deleteForum(Forum forum)
          Deprecated. the ForumCategory.deleteForum(Forum) method should now be used instead of this method.
 void ForumThread.deleteMessage(ForumMessage message)
          Deletes a message in this thread.
 void ForumThread.deleteMessage(ForumMessage message, boolean deleteChildren)
          Deletes a message in this thread, optionally recusively deleting child messages.
 void Announcement.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void Attachment.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void Avatar.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void Forum.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void ForumCategory.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void ForumMessage.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void ForumThread.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void PrivateMessage.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void StatusLevel.deleteProperty(java.lang.String name)
          Deletes an extended property.
 void StatusLevelManager.deleteStatusLevel(StatusLevel statusLevel)
          Deletes a statusLevel level from the system
 void Forum.deleteThread(ForumThread thread)
          Deletes a thread and all of its messages.
 void WatchManager.deleteWatch(Watch watch)
          Delete the specified watch.
 void WatchManager.deleteWatches(User user)
          Deletes all watches that a user has.
 java.util.Iterator WatchManager.getAllWatches(User user, int objectType)
          Returns an iterator for all objects of a particular type that a user is watching.
 Announcement AnnouncementManager.getAnnouncement(long announcementID)
          Returns an announcement by announcement ID.
 Forum ArchiveManager.getArchiveForum(Forum forum)
          Returns the "archive forum" for the specified forum.
 long AttachmentManager.getAttachmentDirectorySize()
          Returns the size (in bytes) of the attachment directory on the file system.
 int ArchiveManager.getAutoArchiveInterval()
          Returns the inverval between auto archive executions (in hours).
 PrivateMessageFolder PrivateMessageManager.getFolder(User user, int folderID)
          Returns the specified folder for a user.
 int PrivateMessageManager.getFolderCount(User user)
          Returns the total number of folders the user has.
 java.util.Iterator PrivateMessageManager.getFolders(User user)
          Returns an Iterator of PrivateMessageFolder objects for the folders the user has.
abstract  Forum ForumFactory.getForum(long forumID)
          Returns the forum with the specified forumID.
abstract  Forum ForumFactory.getForum(java.lang.String nntpName)
          Returns the forum with the specified NNTP name.
abstract  ForumThread ForumFactory.getForumThread(long threadID)
          Returns the thread with the specified threadID.
 InterceptorManager Forum.getInterceptorManager()
          Returns an interceptor manager that can be used to manage the interceptors for this forum.
 InterceptorManager ForumCategory.getInterceptorManager()
          Returns a message interceptor manager that can be used to manage interceptors for this category.
abstract  InterceptorManager ForumFactory.getInterceptorManager()
          Returns a message interceptor manager that can be used to manage global interceptors.
 java.util.Date ArchiveManager.getLastArchivedDate()
          Returns the date the archiving process was last run.
 long AttachmentManager.getMaxFilesystemCacheSize()
          Returns the maximum amount of storage (in bytes) that will be used by the file system cache when database attachment mode is enabled.
abstract  ForumMessage ForumFactory.getMessage(long messageID)
          Returns the forum message with the specified messageID.
 PrivateMessage PrivateMessageManager.getMessage(long privateMessageID)
          Returns the specified private message.
 int PrivateMessageManager.getMessageCount(User user)
          Returns the total number of private messages a user has in their mailbox.
 java.util.Iterator AvatarManager.getModerationAvatars()
          Returns a collection of all of the avatars that require moderation.
 PermissionsManager Forum.getPermissionsManager()
          Returns a permissions manager that can be used to set permissions for this forum.
 PermissionsManager ForumCategory.getPermissionsManager()
          Returns a permissions manager that can be used to set permissions for this category.
abstract  PermissionsManager ForumFactory.getPermissionsManager()
          Returns a permissions manager that can be used to set system wide permissions.
 java.util.Iterator QueryLogger.getQueries()
          Returns an iterator of all the queries that have been made.
 java.util.Iterator QueryLogger.getQueries(User user)
          Returns an Iterator consisting of all the Query's that the specified user has made.
 Query QueryLogger.getQuery(long queryID)
          Returns the query associated with the given queryID.
 int QueryLogger.getQueryCount()
          Returns a count of all the queries that have been made in the system.
 int QueryLogger.getQueryCount(User user)
          Returns a count of all the queries that the user has made.
abstract  SearchManager ForumFactory.getSearchManager()
          Returns the search manger which can be used to manage the index used by Jive to perform searches.
 int WatchManager.getTotalWatchCount(User user, int objectType)
          Returns a count of all watches that a user has of a particular type.
 int PrivateMessageManager.getUnreadMessageCount(User user)
          Returns the total number of unread private messages a user has in their mailbox.
 Watch WatchManager.getWatch(User user, Forum forum)
          Returns a watch on a particular forum, or null if there isn't a watch.
 Watch WatchManager.getWatch(User user, ForumCategory category)
          Returns a watch on a particular category, or null if there isn't a watch.
 Watch WatchManager.getWatch(User user, ForumThread thread)
          Returns a watch on a particular thread, or null if there isn't a watch.
 Watch WatchManager.getWatch(User user, User watchedUser)
          Returns a watch on a particular thread, or null if there isn't a watch.
 int WatchManager.getWatchCount(User user, Forum forum)
          Return the count of all thread watches in a particular forum for the given user.
 int WatchManager.getWatchCount(User user, ForumCategory category)
          Return the count of all forum watches in a particular category for the given user.
 java.util.Iterator WatchManager.getWatchers(int objectType, long objectID)
          Returns all the Users watching the specified object.
 java.util.Iterator WatchManager.getWatches(User user, Forum forum)
          Returns an Iterator for all the thread objects a user is watching in a forum.
 java.util.Iterator WatchManager.getWatches(User user, ForumCategory category)
          Returns an Iterator for all the forum objects a user is watching in a category.
 boolean ArchiveManager.isAutoArchiveEnabled()
          Returns true if auto-archiving is enabled.
 boolean ArchiveManager.isBusy()
          Returns true if the archiving process is currently running.
 boolean WatchManager.isWatched(User user, Forum forum)
          Returns true if the user is watching the specified forum.
 boolean WatchManager.isWatched(User user, ForumCategory category)
          Returns true if the user is watching the specified category.
 boolean WatchManager.isWatched(User user, ForumThread thread)
          Returns true if the user is watching the specified thread.
 boolean WatchManager.isWatched(User user, User watchedUser)
          Returns true if the user is watching the specified user.
abstract  void ForumFactory.mergeForums(Forum forum1, Forum forum2)
          Merges the content of two forums by copying the threads from forum2 to forum1.
 void ForumCategory.moveCategory(ForumCategory subCategory, ForumCategory destinationCategory)
          Moves a sub-category to another category.
 void ForumCategory.moveForum(Forum forum, ForumCategory destinationCategory)
          Moves a forum from this category to another.
 void Forum.moveThread(ForumThread thread, Forum newForum)
          Moves a thread from one forum to another.
 void AttachmentManager.removeAllowedType(java.lang.String contentType)
          Removes a content type fromt he list of explicitly allowed types.
 void TagManager.removeAllTags(JiveContentObject contentObject)
          Disassociates this object with all tags.
 void AttachmentManager.removeDisallowedType(java.lang.String contentType)
          Removes a content type from the list of explicitly disallowed types.
 void RatingManager.removeRating(Rating rating)
          Remove the specified rating from the list of currently available ratings.
 void TagManager.removeTag(ContentTag tag, JiveContentObject contentObject)
          Disassociates this object with the given tag.
 void RewardManager.rewardPoints(ForumMessage message, int numPoints)
          Rewards a message with points from the thread that the message belongs to.
 void ArchiveManager.runArchiver()
          Manually runs the archiving process.
 void PrivateMessageManager.saveMessageAsDraft(PrivateMessage privateMessage)
          Saves a message as a draft by storing it in the sender's Drafts folder.
 PrivateMessage PrivateMessageManager.sendMessage(PrivateMessage privateMessage, User recipient, boolean copyToSentFolder)
          Sends a private message to another user.
 void AvatarManager.setActiveAvatar(User user, Avatar avatar)
          Used to make a user use a global avatar, to set no active avatar pass null for the avatar value.
 void AttachmentManager.setAllowAllByDefault(boolean allowAllByDefault)
          Sets the default allowed content types mode.
 void AvatarManager.setAllowImageResize(boolean isAllowImageResize)
          Used to set whether the system should attempt to resize images
 void ArchiveManager.setArchiveDays(Forum forum, int days)
          Sets the number of days that threads in forum must be inactive before being archived.
 void ArchiveManager.setArchiveForum(Forum forum, Forum archiveForum)
          Sets the "archive forum" for the specified forum.
 void ArchiveManager.setArchiveMode(Forum forum, int mode)
          Returns the archive mode for the forum.
 void ArchiveManager.setArchivingEnabled(Forum forum, boolean enabled)
          Enables or disables archiving for the specified forum.
 void ArchiveManager.setAutoArchiveEnabled(boolean enabled)
          Enables or disables auto-archiving.
 void ArchiveManager.setAutoArchiveInterval(int interval)
          Sets the inverval between auto archive executions (in hours).
 void AvatarManager.setAvatarsEnabled(boolean enabled)
          Used to disable or enable the avatars feature
 void RewardManager.setBankEnabled(boolean enabled)
          Toggles bank points to enabled or disabled.
 void Announcement.setBody(java.lang.String body)
          Sets the body of this announcement.
 void ForumMessage.setBody(java.lang.String body)
          Sets the body of this message.
 void PrivateMessage.setBody(java.lang.String body)
          Sets the body of the message.
 void ForumCategory.setCategoryIndex(ForumCategory subCategory, int newIndex)
          Sets the display order of a sub-category.
 void ContentTag.setCreationDate(java.util.Date creationDate)
          Sets the creation date of this tag.
 void Forum.setCreationDate(java.util.Date creationDate)
          Sets the creation date of the forum.
 void ForumCategory.setCreationDate(java.util.Date creationDate)
          Sets the creation date of the category.
 void ForumMessage.setCreationDate(java.util.Date creationDate)
          Sets the creation date of this message.
 void ForumThread.setCreationDate(java.util.Date creationDate)
          Sets the creation date of this thread.
 void AttachmentManager.setDatabaseModeEnabled(boolean enabled)
          Enables or disables storage of binary attachment data in the database.
 void WatchManager.setDeleteDays(int deleteDays)
          Sets the number of days that a watched object can remain inactive before watches on that object are deleted.
 void Forum.setDescription(java.lang.String description)
          Sets the description of the forum.
 void ForumCategory.setDescription(java.lang.String description)
          Sets the description of the forum category.
 void StatusLevel.setDescription(java.lang.String description)
          Sets the description of this status level
 void Announcement.setEndDate(java.util.Date endDate)
          Sets the date when the announcement should not longer be visible.
 void Watch.setExpirable(boolean expirable)
          Sets whether this watch is expirable or not.
 void ForumCategory.setForumIndex(Forum forum, int newIndex)
          Sets the index of the forum in the category.
 void StatusLevel.setGroup(Group group)
          The group this status level is associated with.
 void StatusLevel.setImagePath(java.lang.String imagePath)
          Sets the path of the image used for this status level.
 void AttachmentManager.setImagePreviewEnabled(boolean imagePreviewEnabled)
          Toggles whether image preview support is enabled.
 void AttachmentManager.setImagePreviewMaxSize(int imagePreviewMaxSize)
          Sets the max dimension of generated thumbnails (ie, the max value for the width or height).
 void AttachmentManager.setImagePreviewRatioEnabled(boolean imagePreviewRatioEnabled)
          Toggles whether the aspect ratio of thumbnails should be preserved.
 void RewardManager.setInitialBankPoints(int initialBankPoints)
          Sets the number of bank points a user will start with.
 void StatusLevel.setLargeImagePath(java.lang.String largeImagePath)
           
 void Forum.setLocale(java.util.Locale locale)
          Sets the locale for this forum.
 void ForumCategory.setLocale(java.util.Locale locale)
          Sets the locale for this category.
 void AvatarManager.setMaxAllowableHeight(int height)
          Sets the maximum allowable height for an avatar image
 void AvatarManager.setMaxAllowableWidth(int width)
          Sets the maximum allowable width for an avatar image
 void AttachmentManager.setMaxAttachmentSize(int maxAttachmentSize)
          Sets the maximum size of an individual attachment in kilobytes.
 void AttachmentManager.setMaxAttachmentsPerMessage(int maxAttachmentsPerMessage)
          Sets the maximum number of attachments per message.
 void RewardManager.setMaxBankPoints(int maxBankPoints)
          Sets the max number of points that can accumulate in a bank account.
 void AttachmentManager.setMaxFilesystemCacheSize(long maxSize)
          Sets the maximum amount of storage (in bytes) that will be used by the file system cache when database attachment mode is enabled.
 void RewardManager.setMaxMessagePoints(int numPoints)
          Sets the maximum number of reward points that can be assigned to a message.
 void PrivateMessageManager.setMaxMessagesPerUser(int maxMessages)
          Sets the max number of message is allowed to store in their mailbox.
 void RewardManager.setMaxThreadPoints(int numPoints)
          Sets the maximum number of reward points that can be assigned to a thread.
 void AvatarManager.setMaxUserAvatars(int max)
          Sets the maximum number of avatars a user can have
 void AvatarManager.setModerateUserAvatars(boolean moderateUserAvatars)
          Sets whether or not user avatars will be moderated.
 void Forum.setModerationDefaultMessageValue(int value)
          Sets the default number of moderation points for threads created in the forum.
 void Forum.setModerationDefaultThreadValue(int value)
          Sets the default number of moderation points for threads created in the forum.
 void ForumMessage.setModerationValue(int value, AuthToken authToken)
          Sets the number of moderation points this message has.
 void ForumThread.setModerationValue(int value, AuthToken authToken)
          Sets the number of moderation points this thread has.
 void Forum.setModificationDate(java.util.Date modificationDate)
          Sets the date the forum was last modified.
 void ForumCategory.setModificationDate(java.util.Date modificationDate)
          Sets the date the category was last modified.
 void ForumMessage.setModificationDate(java.util.Date modificationDate)
          Sets the date this message was last modified.
 void ForumThread.setModificationDate(java.util.Date modificationDate)
          Sets the date this thread was last modified.
 void Avatar.setModValue(int modValue)
          Modifies the moderation value of this specific avatar
 void Attachment.setName(java.lang.String name)
          Sets the name of the attachment.
 void Forum.setName(java.lang.String name)
          Sets the name of a the forum.
 void ForumCategory.setName(java.lang.String name)
          Sets the name of the forum category.
 void StatusLevel.setName(java.lang.String name)
          Sets the name of this status level
 void Forum.setNNTPName(java.lang.String nntpName)
          Sets the NNTP name for the forum, which is the name of the forum used in the NNTP protocol (newsgroups).
 void StatusLevel.setPointRange(int minPoints, int maxPoints)
          Sets a point range for this status level, if this status level was group based before it will now be point based.
 void PrivateMessageManager.setPrivateMessagesEnabled(boolean enabled)
          Enables or disables the private message feature.
 void Announcement.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of this annoucement.
 void Attachment.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the attachment.
 void Avatar.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the attachment.
 void Forum.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the forum.
 void ForumCategory.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the category.
 void ForumMessage.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of this message.
 void ForumThread.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of this thread.
 void PrivateMessage.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of this private message.
 void StatusLevel.setProperty(java.lang.String name, java.lang.String value)
          Sets an extended property of the status level.
 void RatingManager.setRatingsEnabled(boolean ratingsEnabled)
          Enables or disables the ratings feature.
 void ReadTracker.setReadTrackingEnabled(boolean enabled)
          Enables or disables the read tracking feature.
 void RewardManager.setRewardsEnabled(boolean enabled)
          Enables or disables the rewards feature.
 void Announcement.setStartDate(java.util.Date startDate)
          Sets the start date for when the announcement should first be visible.
 void StatusLevelManager.setStatusLevelsEnabled(boolean statusLevelEnabled)
          Sets whether status levels should be enabled in the system.
 void Announcement.setSubject(java.lang.String subject)
          Sets the announcement subject.
 void ForumMessage.setSubject(java.lang.String subject)
          Sets the subject of this message.
 void PrivateMessage.setSubject(java.lang.String subject)
          Sets the subject of the message.
 void RewardManager.transferPoints(ForumThread thread, int numPoints)
          Transfers the specified number of points to the thread.
 

Uses of UnauthorizedException in com.jivesoftware.forum.renderer
 

Methods in com.jivesoftware.forum.renderer that throw UnauthorizedException
 void RenderManager.addFilterRenderTypes(java.lang.String filterName, java.util.List renderTypes)
          Adds a set of render types for the given filter.
 void RenderManager.addRenderFilter(java.lang.String className)
          Installs a new class into the list of render filters for the system.
 void RenderManager.copyGlobalFilters()
          Copy all global filters to the current context.
 long RenderManager.getFilterRenderTypes(java.lang.String filterName)
          Returns the bitset render types installed for the filter at the given index.
 RenderFilter RenderManager.getRenderFilter(java.lang.String filterName)
          Return the render filter with the specified name
 int RenderManager.getRenderFilterCount()
          Returns the count of currently installed render filters.
 RenderFilter[] RenderManager.getRenderFilters()
          Returns an array of RenderFilter objects that list all the currently configured render filters.
 void RenderManager.removeAllFilters()
          Removes all filters from the current context.
 void RenderManager.removeFilterRenderTypes(java.lang.String filterName, java.util.List renderTypes)
          Removes a set of render types from the given filter.
 void RenderManager.removeRenderFilter(java.lang.String filterName)
          Removes the specified filter from the list of currently configured filters.
 void RenderManager.save()
          Saves all filters to the persistent store.
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.