|
Jive Forums API (5.5.20.2-oracle) Developer Javadocs | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Forum | |
---|---|
com.jivesoftware.forum | Core interfaces and classes for Jive Forums. |
com.jivesoftware.forum.action | Jive Forums WebWork actions. |
com.jivesoftware.forum.action.rss | Jive Forums WebWork RSS actions. |
com.jivesoftware.forum.database | DB implementation of core Jive Forums interfaces. |
com.jivesoftware.forum.event | Provides mechanisms to be notified of actions in the system such as new messages being created. |
com.jivesoftware.forum.expert | |
com.jivesoftware.forum.gateway | Synchronizes Jive Forums data with external data sources such as NNTP servers. |
com.jivesoftware.forum.moderation | |
com.jivesoftware.forum.nntp.spi | Implementation of core NNTP interfaces. |
com.jivesoftware.forum.proxy | Protection proxies for Jive Forums objects. |
com.jivesoftware.forum.stats | Jive Forums reporting engine. |
com.jivesoftware.forum.util | Jive Forums utility classes. |
com.jivesoftware.forum.webservices.server | |
com.jivesoftware.util.sf |
Uses of Forum in com.jivesoftware.forum |
---|
Methods in com.jivesoftware.forum that return Forum | |
---|---|
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. |
Forum |
ArchiveManager.getArchiveForum(Forum forum)
Returns the "archive forum" for the specified forum. |
Forum |
ForumMessage.getForum()
Returns the forum this message belongs to. |
Forum |
ForumThread.getForum()
Returns the forum this thread belongs to. |
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. |
Methods in com.jivesoftware.forum with parameters of type Forum | |
---|---|
Announcement |
AnnouncementManager.createAnnouncement(User user,
Forum forum)
Creates a new forum announcement. |
abstract Query |
ForumFactory.createQuery(Forum[] forums)
Creates a query object to search through the specified list of forums. |
Query |
QueryManager.createQuery(Forum[] forums)
Creates a query object to search through the specified array of forums. |
Watch |
WatchManager.createWatch(User user,
Forum forum)
Create a watch on a forum for the specified user. |
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. |
int |
ArchiveManager.getArchiveDays(Forum forum)
Returns the number of days that threads in forum must be inactive before being archived. |
Forum |
ArchiveManager.getArchiveForum(Forum forum)
Returns the "archive forum" for the specified forum. |
int |
ArchiveManager.getArchiveMode(Forum forum)
Returns the archive mode for the forum. |
long[] |
StatusLevelCalculator.getLeaderIds(Forum forum,
int startIndex,
int numResults)
Returns a long array of user ids of forum leaders |
java.util.Iterator |
StatusLevelManager.getLeaders(Forum forum)
Returns an Iterator of leaders for a specific forum |
java.util.Iterator |
StatusLevelManager.getLeaders(Forum forum,
int startIndex,
int numResults)
Returns an Iterator of leaders for a specific forum |
int |
StatusLevelCalculator.getPointLevel(User user,
Forum forum)
Returns the status level points for a user in regards to a specific forum |
int |
StatusLevelManager.getPointLevel(User user,
Forum forum)
Returns the status level points for a user in regards to a specific forum |
int |
RewardManager.getPointsEarned(User user,
Forum forum)
Returns the total number of points the user has earned in a particular forum. |
int |
Query.getResultForumCount(Forum forum)
Returns the number of results in the search that match the given forum. |
int |
Query.getResultForumCountByThread(Forum forum)
Returns the number of results in the search that match the given forum where search results are grouped by thread. |
StatusLevel |
StatusLevelManager.getStatusLevel(User user,
Forum forum)
Returns the status level for a user in a specific forum. if a status level cannot be determined for this user in this forum null will be returned. |
java.util.Iterator |
RewardManager.getTopUsers(int startIndex,
int numResults,
Forum forum)
Returns an iterator for the top point earners in a forum. |
int |
ReadTracker.getUnreadMessageCount(User user,
Forum forum)
Returns the count of unread messages that the user has in the forum. |
java.util.Iterator |
ReadTracker.getUnreadMessages(User user,
Forum forum)
Returns an iterator for the unread messages in the forum. |
int |
ReadTracker.getUnreadThreadCount(User user,
Forum forum)
Returns the count of unread threads that the user has in the forum. |
java.util.Iterator |
ReadTracker.getUnreadThreads(User user,
Forum forum)
Returns an iterator for the unread threads in the forum. |
Watch |
WatchManager.getWatch(User user,
Forum forum)
Returns a watch on a particular forum, 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. |
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,
Forum forum,
int startIndex,
int numResults)
Returns all the ForumThreads watched by the User under the given Forum. |
boolean |
ArchiveManager.isArchivingEnabled(Forum forum)
Returns true if archiving is enabled for the specified forum. |
boolean |
WatchManager.isWatched(User user,
Forum forum)
Returns true if the user is watching the specified forum. |
void |
ReadTracker.markRead(User user,
Forum forum)
Marks an entire forum as read up until the current instant in time. |
abstract void |
ForumFactory.mergeForums(Forum forum1,
Forum forum2)
Merges the content of two forums by copying the threads from forum2 to forum1. |
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 |
SearchManager.removeFromIndex(Forum forum)
Removes a forum from the index. |
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 |
ForumCategory.setForumIndex(Forum forum,
int newIndex)
Sets the index of the forum in the category. |
Uses of Forum in com.jivesoftware.forum.action |
---|
Fields in com.jivesoftware.forum.action declared as Forum | |
---|---|
protected Forum |
TagCloudAction.forum
|
Methods in com.jivesoftware.forum.action that return Forum | |
---|---|
Forum |
AnnounceAction.getForum()
Returns the forum this announcement was created in or null if it was not created in a forum. |
Forum |
Breadcrumbs.getForum()
|
Forum |
ForumAction.getForum()
Returns the forum we've loaded. |
Forum |
OldPostAction.getForum()
Returns the forum we're posting in. |
Forum |
PollPostAction.getForum()
Returns the forum we're posting the poll in or null if this is not a forum specific poll. |
Forum |
PollsViewAction.getForum()
Returns the forum object loaded by the given forum ID or null if no forum was specified. |
Forum |
PostAction.getForum()
Returns the forum we're posting in. |
Forum |
PostAnnounceAction.getForum()
Returns the forum we're posting the announcement in or null if this is not a forum specific announcement. |
Forum |
ReadAction.getForum()
Returns the forum we've loaded. |
Forum |
RewardsAction.getForum()
|
Forum |
StatusLevelLeadersAction.getForum()
Returns the forum we're working with or null if this is a category or global leader list. |
Forum |
TagCloudAction.getForum()
|
Forum |
EditRenderFilter.getForumObject()
|
Forum |
FilterSettings.getForumObject()
|
Forum |
SearchAction.getSearchedForum()
Returns the single forum being searched or null if no forum was specified or if there is more than one forum being searched. |
Forum |
MoveThreadAction.getTargetForum()
|
Methods in com.jivesoftware.forum.action with parameters of type Forum | |
---|---|
boolean |
ForumActionSupport.getCanAttach(Forum forum)
Returns true if the page user can create message attachments in the given forum, false otherwise.. |
boolean |
ForumActionSupport.getCanCreatePoll(Forum forum)
Returns true if the page user is authorized to create polls in the given forum, false otherwise. |
boolean |
ForumActionSupport.getCanCreateThread(Forum forum)
Returns true if the page user is authorized to create threads in the given forum, false otherwise. |
boolean |
ForumActionSupport.getCanEditPoll(Forum forum,
Poll poll)
|
boolean |
ForumActionSupport.getCanPostAnnounce(Forum forum)
Returns true if the page user is authorized to post announcements in the given forum, false otherwise. |
boolean |
ForumActionSupport.getCanRead(Forum forum)
Returns true if the page user is authorized to view content given forum, false otherwise. |
int |
SearchAction.getResultByForumCount(Forum forum)
Returns the total number of results for the given forum. |
java.lang.String |
ForumActionSupport.getSkinProperty(Forum forum,
java.lang.String name)
Returns a skin property. |
boolean |
ForumActionSupport.isAdmin(Forum forum)
Returns true if the page user is an administrator of the specified forum, false otherwise. |
boolean |
ForumActionSupport.isMessageModerationOn(Forum forum)
Returs true if message-level moderation is enabled for this forum, false otherwise. |
boolean |
ForumActionSupport.isModerator(Forum forum)
Returns true if the page user is a moderator of the specified forum. |
boolean |
ForumActionSupport.isThreadModerationOn(Forum forum)
Returns true if thread-level moderation is enabled for this forum, false otherwise. |
protected void |
ForumAction.setForum(Forum forum)
Sets the forum to work with. |
void |
ForumAware.setForum(Forum forum)
Provides the action an instance of Forum |
void |
OldPostAction.setForum(Forum forum)
|
protected void |
PollPostAction.setForum(Forum forum)
Sets the forum to work with. |
void |
PostAction.setForum(Forum forum)
|
protected void |
ReadAction.setForum(Forum forum)
Sets the forum to load. |
protected void |
RewardsAction.setForum(Forum forum)
|
Uses of Forum in com.jivesoftware.forum.action.rss |
---|
Methods in com.jivesoftware.forum.action.rss that return Forum | |
---|---|
Forum |
RSSAnnouncements.getForum()
Returns the requested forum or null if one was not specified. |
Forum |
RSSMessages.getForum()
|
Uses of Forum in com.jivesoftware.forum.database |
---|
Classes in com.jivesoftware.forum.database that implement Forum | |
---|---|
class |
DbForum
Database implementation of the Forum interface. |
Methods in com.jivesoftware.forum.database that return Forum | |
---|---|
Forum |
DbForumFactory.createForum(java.lang.String name,
java.lang.String description)
|
Forum |
DbForumFactory.createForum(java.lang.String name,
java.lang.String description,
ForumCategory category)
|
Forum |
DbArchiveManager.getArchiveForum(Forum forum)
|
Forum |
DbForumMessage.getForum()
|
Forum |
DbForumThread.getForum()
|
Forum |
EmailWatchMessageWrapper.getForum()
|
Forum |
DbForumFactory.getForum(long forumID)
|
Forum |
DbForumFactory.getForum(java.lang.String nntpName)
|
Forum[] |
DbQuery.getForums()
|
Methods in com.jivesoftware.forum.database with parameters of type Forum | |
---|---|
Announcement |
DbAnnouncementManager.createAnnouncement(User user,
Forum forum)
|
Query |
DbForumFactory.createQuery(Forum[] forums)
|
Query |
DbQueryManager.createQuery(Forum[] forums)
|
Watch |
DbWatchManager.createWatch(User user,
Forum forum)
|
void |
DbForumCategory.deleteForum(Forum forum)
|
void |
DbForumFactory.deleteForum(Forum forum)
|
void |
DbForumCategory.deleteForum(Forum forum,
boolean fireEvent)
|
int |
DbArchiveManager.getArchiveDays(Forum forum)
|
Forum |
DbArchiveManager.getArchiveForum(Forum forum)
|
int |
DbArchiveManager.getArchiveMode(Forum forum)
|
long[] |
PostCountStatusLevelCalculator.getLeaderIds(Forum forum,
int startIndex,
int numResults)
|
long[] |
RewardStatusLevelCalculator.getLeaderIds(Forum forum,
int startIndex,
int numResults)
|
java.util.Iterator |
DbStatusLevelManager.getLeaders(Forum forum)
|
java.util.Iterator |
DbStatusLevelManager.getLeaders(Forum forum,
int startIndex,
int numResults)
|
int |
DbStatusLevelManager.getPointLevel(User user,
Forum forum)
|
int |
PostCountStatusLevelCalculator.getPointLevel(User user,
Forum forum)
|
int |
RewardStatusLevelCalculator.getPointLevel(User user,
Forum forum)
|
int |
DbRewardManager.getPointsEarned(User user,
Forum forum)
|
int |
DbQuery.getResultForumCount(Forum forum)
|
int |
DbQuery.getResultForumCountByThread(Forum forum)
|
StatusLevel |
DbStatusLevelManager.getStatusLevel(User user,
Forum forum)
|
java.util.Iterator |
DbRewardManager.getTopUsers(int startIndex,
int numResults,
Forum forum)
|
int |
DbReadTracker.getUnreadMessageCount(User user,
Forum forum)
|
java.util.Iterator |
DbReadTracker.getUnreadMessages(User user,
Forum forum)
|
int |
DbReadTracker.getUnreadThreadCount(User user,
Forum forum)
|
java.util.Iterator |
DbReadTracker.getUnreadThreads(User user,
Forum forum)
|
Watch |
DbWatchManager.getWatch(User user,
Forum forum)
|
int |
DbWatchManager.getWatchCount(User user,
Forum forum)
|
java.util.Iterator |
DbWatchManager.getWatches(User user,
Forum forum)
|
java.util.Iterator |
DbWatchManager.getWatches(User user,
Forum forum,
int startIndex,
int numResults)
|
boolean |
DbArchiveManager.isArchivingEnabled(Forum forum)
|
boolean |
DbWatchManager.isWatched(User user,
Forum forum)
|
void |
DbReadTracker.UserReadTracker.markRead(Forum forum)
Marks an entire forum as read. |
void |
DbReadTracker.markRead(User user,
Forum forum)
|
void |
DbForumFactory.mergeForums(Forum forum1,
Forum forum2)
|
void |
DbForumCategory.moveForum(Forum forum,
ForumCategory destinationCategory)
|
void |
DbForum.moveThread(ForumThread thread,
Forum otherForum)
|
void |
DbSearchManager.removeFromIndex(Forum forum)
|
void |
DbSearchManager.removeFromIndex(Forum forum,
boolean cluster)
|
void |
DbArchiveManager.setArchiveDays(Forum forum,
int days)
|
void |
DbArchiveManager.setArchiveForum(Forum forum,
Forum archiveForum)
|
void |
DbArchiveManager.setArchiveMode(Forum forum,
int mode)
|
void |
DbArchiveManager.setArchivingEnabled(Forum forum,
boolean enabled)
|
void |
DbForumCategory.setForumIndex(Forum forum,
int newIndex)
|
void |
ForumBlockIterator.setIndex(Forum forum)
|
Constructors in com.jivesoftware.forum.database with parameters of type Forum | |
---|---|
DbForumMessage(User user,
Forum forum)
Creates a new DbForumMessage object. |
|
DbForumThread(Forum forum,
ForumMessage rootMessage)
Creates a new DbForumThread. |
|
DbQuery(Forum[] forums)
|
|
ForumCacheWarmupTask(Forum forum)
Create a new cache warmup task. |
Uses of Forum in com.jivesoftware.forum.event |
---|
Methods in com.jivesoftware.forum.event that return Forum | |
---|---|
Forum |
ForumEvent.getForum()
Returns the Forum that the event corresponds to. |
Constructors in com.jivesoftware.forum.event with parameters of type Forum | |
---|---|
ForumEvent(int eventType,
Forum forum,
java.util.Map params)
Creates a new forum event. |
Uses of Forum in com.jivesoftware.forum.expert |
---|
Methods in com.jivesoftware.forum.expert that return Forum | |
---|---|
Forum |
OpenQuestionAlertSettings.getForum()
Returns the Forum for which this instance holds open email alert settings. |
Uses of Forum in com.jivesoftware.forum.gateway |
---|
Methods in com.jivesoftware.forum.gateway that return Forum | |
---|---|
Forum |
BaseGateway.getForum()
|
Forum |
Gateway.getForum()
Returns forum object that this gateway is exporting/importing messages to/from. |
Methods in com.jivesoftware.forum.gateway with parameters of type Forum | |
---|---|
Gateway |
DefaultGatewayManager.createGatewayInstance(Forum forum,
java.lang.String type)
Used to create and return an instance of a gateway based off the gateway settings, this gateway won't be installed as a new persistent gateway. |
Gateway |
GatewayManager.createGatewayInstance(Forum forum,
java.lang.String type)
Used to create and return an instance of a gateway based off the gateway settings, this gateway won't be installed as a new persistent gateway. |
Gateway |
GatewayManagerProxy.createGatewayInstance(Forum forum,
java.lang.String type)
|
java.util.Collection |
DefaultGatewayManager.getGateways(Forum forum)
Returns all the gateways for a forum. |
java.util.Collection |
GatewayManager.getGateways(Forum forum)
Returns all the gateways for a forum. |
java.util.Collection |
GatewayManagerProxy.getGateways(Forum forum)
|
protected DbForumMessage |
JavaMailImporter.lookupMessageByID(Forum forum,
java.lang.String messageID,
boolean checkDummy)
Utility method to determine if a message exists in the forum already. |
void |
DefaultGatewayManager.remove(Forum forum)
Deletes all gateways for this context by removing their properties and stopping them from running. |
void |
GatewayManager.remove(Forum forum)
Deletes all gateways for this context by removing their properties and stopping them from running. |
void |
GatewayManagerProxy.remove(Forum forum)
|
Constructors in com.jivesoftware.forum.gateway with parameters of type Forum | |
---|---|
GatewaySettings(Forum forum,
java.lang.String type)
|
|
ImapImporter(ForumFactory factory,
Forum forum,
GatewaySettings gatewaySettings)
Create a new ImapImporter instance. |
|
JavaMailImporter.InsertCacheItem(Forum forum,
ForumThread thread,
ForumMessage parent,
ForumMessage message)
|
|
JavaMailImporter(ForumFactory factory,
Forum forum,
GatewaySettings settings)
|
|
MboxImporter(ForumFactory factory,
Forum forum,
GatewaySettings gatewaySettings)
Create an instance |
|
NewsgroupExporter(ForumFactory factory,
Forum forum,
GatewaySettings gatewaySettings)
Create an instance. |
|
NewsgroupImporter(ForumFactory factory,
Forum forum,
GatewaySettings gatewaySettings)
Create an instance |
|
Pop3Importer(ForumFactory factory,
Forum forum,
GatewaySettings settings)
Create a new Pop3Importer instance. |
|
SmtpExporter(ForumFactory factory,
Forum forum,
GatewaySettings gatewaySettings)
Create a new SmtpExporter instance. |
Uses of Forum in com.jivesoftware.forum.moderation |
---|
Methods in com.jivesoftware.forum.moderation with parameters of type Forum | |
---|---|
int |
ModerationManager.getMessageCount(Forum forum)
Gets the number of moderated messages in a forum |
int |
ModerationManagerImpl.getMessageCount(Forum forum)
|
int |
ModerationManager.getMessageCount(ModerationFilter modFilter,
Forum forum)
Gets the number of moderated messages in a forum |
int |
ModerationManagerImpl.getMessageCount(ModerationFilter modFilter,
Forum forum)
|
ForumMessageIterator |
ModerationManager.getMessages(AuthToken authToken,
Forum forum)
Gets a list of moderated messages for a particular forum. |
ForumMessageIterator |
ModerationManagerImpl.getMessages(AuthToken authToken,
Forum forum)
|
ForumMessageIterator |
ModerationManager.getMessages(ModerationFilter modFilter,
AuthToken authToken,
Forum forum)
Gets a list of moderated messages for a particular forum. |
ForumMessageIterator |
ModerationManagerImpl.getMessages(ModerationFilter modFilter,
AuthToken authToken,
Forum forum)
|
Uses of Forum in com.jivesoftware.forum.nntp.spi |
---|
Methods in com.jivesoftware.forum.nntp.spi that return Forum | |
---|---|
Forum |
FForumNewsGroupAdapter.getForum()
Returns the underlying Forum object. |
Forum |
ForumSession.getForum(java.lang.String groupName)
Obtain a forum by it's name. |
Constructors in com.jivesoftware.forum.nntp.spi with parameters of type Forum | |
---|---|
FForumNewsGroupAdapter(Forum forum)
Create a new adapter to wrap the given forum. |
Uses of Forum in com.jivesoftware.forum.proxy |
---|
Classes in com.jivesoftware.forum.proxy that implement Forum | |
---|---|
class |
ForumProxy
A protection proxy for Forums. |
Methods in com.jivesoftware.forum.proxy that return Forum | |
---|---|
Forum |
ForumFactoryProxy.createForum(java.lang.String name,
java.lang.String description)
|
Forum |
ForumFactoryProxy.createForum(java.lang.String name,
java.lang.String description,
ForumCategory category)
|
Forum |
ArchiveManagerProxy.getArchiveForum(Forum forum)
|
Forum |
ForumMessageProxy.getForum()
|
Forum |
ForumThreadProxy.getForum()
|
Forum |
ForumFactoryProxy.getForum(long forumID)
|
Forum |
ForumFactoryProxy.getForum(java.lang.String nntpName)
|
Forum |
ForumProxy.getProxiedForum()
Returns the forum class that the proxy wraps. |
Methods in com.jivesoftware.forum.proxy with parameters of type Forum | |
---|---|
Announcement |
AnnouncementManagerProxy.createAnnouncement(User user,
Forum forum)
|
Query |
ForumFactoryProxy.createQuery(Forum[] forums)
|
Query |
QueryManagerProxy.createQuery(Forum[] forums)
|
Watch |
WatchManagerProxy.createWatch(User user,
Forum forum)
|
void |
ForumCategoryProxy.deleteForum(Forum forum)
|
void |
ForumFactoryProxy.deleteForum(Forum forum)
|
int |
ArchiveManagerProxy.getArchiveDays(Forum forum)
|
Forum |
ArchiveManagerProxy.getArchiveForum(Forum forum)
|
int |
ArchiveManagerProxy.getArchiveMode(Forum forum)
|
java.util.Iterator |
StatusLevelManagerProxy.getLeaders(Forum forum)
|
java.util.Iterator |
StatusLevelManagerProxy.getLeaders(Forum forum,
int startIndex,
int numResults)
|
int |
StatusLevelManagerProxy.getPointLevel(User user,
Forum forum)
|
int |
RewardManagerProxy.getPointsEarned(User user,
Forum forum)
|
int |
QueryProxy.getResultForumCount(Forum forum)
|
int |
QueryProxy.getResultForumCountByThread(Forum forum)
|
StatusLevel |
StatusLevelManagerProxy.getStatusLevel(User user,
Forum forum)
|
java.util.Iterator |
RewardManagerProxy.getTopUsers(int startIndex,
int numResults,
Forum forum)
|
int |
ReadTrackerProxy.getUnreadMessageCount(User user,
Forum forum)
|
java.util.Iterator |
ReadTrackerProxy.getUnreadMessages(User user,
Forum forum)
|
int |
ReadTrackerProxy.getUnreadThreadCount(User user,
Forum forum)
|
java.util.Iterator |
ReadTrackerProxy.getUnreadThreads(User user,
Forum forum)
|
Watch |
WatchManagerProxy.getWatch(User user,
Forum forum)
|
int |
WatchManagerProxy.getWatchCount(User user,
Forum forum)
|
java.util.Iterator |
WatchManagerProxy.getWatches(User user,
Forum forum)
|
java.util.Iterator |
WatchManagerProxy.getWatches(User user,
Forum forum,
int startIndex,
int numResults)
|
boolean |
ArchiveManagerProxy.isArchivingEnabled(Forum forum)
|
boolean |
WatchManagerProxy.isWatched(User user,
Forum forum)
|
void |
ReadTrackerProxy.markRead(User user,
Forum forum)
|
void |
ForumFactoryProxy.mergeForums(Forum forum1,
Forum forum2)
|
void |
ForumCategoryProxy.moveForum(Forum forum,
ForumCategory destinationCategory)
|
void |
ForumProxy.moveThread(ForumThread thread,
Forum newForum)
|
void |
ArchiveManagerProxy.setArchiveDays(Forum forum,
int days)
|
void |
ArchiveManagerProxy.setArchiveForum(Forum forum,
Forum archiveForum)
|
void |
ArchiveManagerProxy.setArchiveMode(Forum forum,
int mode)
|
void |
ArchiveManagerProxy.setArchivingEnabled(Forum forum,
boolean enabled)
|
void |
ForumCategoryProxy.setForumIndex(Forum forum,
int newIndex)
|
Constructors in com.jivesoftware.forum.proxy with parameters of type Forum | |
---|---|
ForumProxy(Forum forum,
AuthToken authToken,
Permissions permissions)
Creates a new ForumProxy object. |
Uses of Forum in com.jivesoftware.forum.stats |
---|
Methods in com.jivesoftware.forum.stats with parameters of type Forum | |
---|---|
void |
ViewCountManager.addForumCount(Forum forum)
Increments the view count of the given forum by 1 or does nothing if view counts are not enabled. |
void |
ViewCountManager.clearCount(Forum forum)
Resets the read count for the given forum to 0 or does nothing if view counts are not enabled. |
int |
ViewCountManager.getForumCount(Forum forum)
Returns the number of times the given object has been read or -1 if view counts are not enabled. |
Uses of Forum in com.jivesoftware.forum.util |
---|
Methods in com.jivesoftware.forum.util with parameters of type Forum | |
---|---|
static int |
AdminUtils.getModerationStatus(Forum forum)
Returns a code to indicate the state of moderation the given forum is in. |
static java.util.List |
SkinUtils.getParentCategories(Forum forum)
Returns a list of parent categories for the given forum in top-down order. |
static java.lang.String |
SkinUtils.getSkinProperty(Forum forum,
java.lang.String name)
Searches for the property name in the given forum. |
static boolean |
WikiUtils.isEnabled(Forum forum)
|
static boolean |
SkinUtils.isNew(Forum forum,
java.util.Date time)
Returns true if the forum has been modified since the specified time. |
static boolean |
WikiUtils.isWikiHeadingSyntaxEnabled(Forum forum)
|
static boolean |
WikiUtils.isWikiImageSyntaxEnabled(Forum forum)
|
static boolean |
WikiUtils.isWikiLinkSyntaxEnabled(Forum forum)
|
static boolean |
WikiUtils.isWikiStyleSyntaxEnabled(Forum forum)
|
static boolean |
WikiUtils.isWikiTableSyntaxEnabled(Forum forum)
|
static java.lang.String |
AdminUtils.printParentCategories(Forum forum,
java.lang.String delim)
Prints the list of parent categories in top-down order delimited by the given delimiter. |
Uses of Forum in com.jivesoftware.forum.webservices.server |
---|
Methods in com.jivesoftware.forum.webservices.server with parameters of type Forum | |
---|---|
static Forum |
WSUtil.convert(Forum forum)
Converts a Forum object to a webservice Forum object. |
Uses of Forum in com.jivesoftware.util.sf |
---|
Methods in com.jivesoftware.util.sf with parameters of type Forum | |
---|---|
static boolean |
SalesForceUtil.isForumIntegrated(Forum forum)
|
static void |
SalesForceUtil.removeIntegratedFlag(Forum forum)
|
static void |
SalesForceUtil.setIntegratedFlag(Forum forum)
|
|
Jive Forums Project Page | |||||||||
PREV NEXT | FRAMES NO FRAMES |