Jive API (3.0.13) Core Javadocs

Uses of Interface
com.jivesoftware.community.JiveContainer

Packages that use JiveContainer
com.jivesoftware.community Core interfaces and classes for Jive SBS. 
com.jivesoftware.community.action Jive SBS WebWork actions. 
com.jivesoftware.community.event Provides mechanisms to be notified of actions in the system such as new messages being created. 
com.jivesoftware.community.favorites.type   
com.jivesoftware.community.featured   
com.jivesoftware.community.impl.activity   
com.jivesoftware.community.media   
com.jivesoftware.community.media.authz   
com.jivesoftware.community.media.type   
com.jivesoftware.community.media.video   
com.jivesoftware.community.moderation   
com.jivesoftware.community.objecttype   
com.jivesoftware.community.project   
com.jivesoftware.community.renderer The renderer package provides a way for converting text in one format into another, typically from markup to html and vice versa. 
com.jivesoftware.community.socialgroup   
com.jivesoftware.community.widget   
com.jivesoftware.community.xmpp XMPP integration classes to integrate XMPP with Jive SBS. 
 

Uses of JiveContainer in com.jivesoftware.community
 

Subinterfaces of JiveContainer in com.jivesoftware.community
 interface Blog
          A container for a list of blog postings by a user or group of users.
 interface Community
          A container for threads, documents and a hierarchy of other communities.
 interface JiveHierarchicalContainer
          A base container object that jive container objects that can be nested will implement
 

Methods in com.jivesoftware.community that return JiveContainer
 JiveContainer Blog.getJiveContainer()
          Returns the parent container to which this blog belongs.
 JiveContainer Comment.getJiveContainer()
          Returns the container object of the document.
 JiveContainer Document.getJiveContainer()
          Returns the container object of the document.
 JiveContainer ForumMessage.getJiveContainer()
          Returns the container object of the message.
 JiveContainer ForumThread.getJiveContainer()
          Returns the container object of the thread.
 JiveContainer TagSet.getJiveContainer()
          Returns the JiveContainer to which this TagSet is bound.
 JiveContainer RecentContentInfoProvider.getParent(JiveObject object)
          Returns the container housing the object.
 JiveContainer RecentContentEventHandlingStrategy.getTargetContainer(BaseJiveEvent event)
          If the event payload is a JiveContentObject, this method tries to return that object's container.
 JiveContainer ContainableTypeInfoProvider.getUserPersonalContainerForContentType(User owner)
          For this object type, return the container owned by the user which houses all instances of objects of this current type created by the user.
 

Methods in com.jivesoftware.community that return types with arguments of type JiveContainer
 Map<JiveContainer,Long> StatusLevelManager.getAllPointLevels(User user)
          Returns a map of community -> status level points for all the communities the user has points in.
 List<JiveContainer> OldModerationManager.getContainers()
          This method will return a list of containers where the user is a moderator.
 

Methods in com.jivesoftware.community with parameters of type JiveContainer
 void DocumentManager.addDocument(JiveContainer container, Document document, Map parameters)
          Add a document as a child of a container.
 void DocumentManager.addDocument(JiveContainer container, Document document, PermissionsBundle permBundle, Map parameters)
          Add a document as a child of the container with permissions defined by the provided permission bundle.
 void DocumentManager.addDocumentApprover(JiveContainer container, User user)
          Add the user as a document approver for this entire container.
 void StatusLevelManager.addPoints(User user, JiveContainer container, JiveObject object, long points, String code)
          Rewards points to a user.
 void StatusLevelManager.addPoints(User user, JiveContainer container, JiveObject jiveObject, String scenarioCode)
          Give points to a user using the specified scenerio code.
 void ForumManager.addThread(JiveContainer container, ForumThread thread)
          Adds a new thread to the container.
 Announcement AnnouncementManager.createAnnouncement(User user, JiveContainer jiveContainer)
          Creates a new community announcement.
 Blog BlogManager.createBlog(JiveContainer container)
          Creates a new blog.
 ForumMessage ForumManager.createMessage(JiveContainer container)
          Factory method to create a message with an anonymous author.
 ForumMessage ForumManager.createMessage(JiveContainer container, User user)
          Factory method to create a message as the specified user.
 TagSet TagSetManager.createTagSet(String name, String description, LongList tagIDs, JiveContainer container)
          Creates a new TagSet with the supplied name, description, and tags.
 ForumThread ForumManager.createThread(JiveContainer container, ForumMessage rootMessage)
          Factory method to create a new thread.
 int AnnouncementManager.getAnnouncementCount(JiveContainer jiveContainer)
          Returns the count of all currently viewable announcements in a container.
 int AnnouncementManager.getAnnouncementCount(JiveContainer jiveContainer, boolean recursive)
          Returns the count of all currently viewable announcements in a container.
 int AnnouncementManager.getAnnouncementCount(JiveContainer jiveContainer, Date startDate, Date endDate)
          Returns the count of all announcements in a container that are viewable within the specified date range.
 JiveIterator<Announcement> AnnouncementManager.getAnnouncements(JiveContainer jiveContainer)
          Returns all currently viewable announcements in a container.
 JiveIterator<Announcement> AnnouncementManager.getAnnouncements(JiveContainer jiveContainer, Date startDate, Date endDate)
          Returns the announcements in a container that are viewable within a specified date range.
 Blog BlogManager.getBlog(JiveContainer container)
          Returns the blog for the given container.
 int BlogManager.getBlogPostCount(JiveContainer container)
          Returns the number of blog posts associated with this container.
 int BlogManager.getBlogPostCount(JiveContainer container, BlogPostResultFilter resultFilter)
          Returns the number of blog posts in all blogs associated with the container based on the specified ResultFilter.
 JiveIterator<BlogPost> BlogManager.getBlogPosts(JiveContainer container)
          Returns the blog posts associated with this container.
 JiveIterator<BlogPost> BlogManager.getBlogPosts(JiveContainer container, BlogPostResultFilter resultFilter)
          Returns the blog posts in all blogs associated with the container based on the specified ResultFilter.
 JiveIterator<JiveContentObject> CommunityManager.getCombinedContent(JiveContainer container, ContainableType... contentTypes)
          Returns an Iterable for all content objects in the container, depending on which ContainableTypes are supplied as an argument.
 JiveIterator<JiveContentObject> CommunityManager.getCombinedContent(JiveContainer container, FilteredContentEnabledType... contentTypes)
          Returns an Iterable for all content objects in the container, depending on which FilteredContentEnabledTypes are supplied as an argument.
 JiveIterator<JiveContentObject> CommunityManager.getCombinedContent(JiveContainer container, ResultFilter filter, ContainableType... contentTypes)
          Returns an Iterable for all content objects in the container, depending on which ContainableTypes are supplied as an argument, and according the the supplied ResultFilter.
 JiveIterator<JiveContentObject> CommunityManager.getCombinedContent(JiveContainer container, ResultFilter filter, FilteredContentEnabledType... contentTypes)
          Returns an Iterable for all content objects in the container, depending on which FilteredContentEnabledTypes are supplied as an argument, and according the the supplied ResultFilter.
 int CommunityManager.getCombinedContentCount(JiveContainer container, ContainableType... contentTypes)
          Returns the combined number of content objects in the container, depending on which ContainableTypes are supplied as an argument.
 int CommunityManager.getCombinedContentCount(JiveContainer container, FilteredContentEnabledType... contentTypes)
          Returns the combined number of content objects in the container, depending on which FilteredContentEnabledTypes are supplied as an argument.
 int CommunityManager.getCombinedContentCount(JiveContainer container, ResultFilter filter, ContainableType... contentTypes)
          Returns the combined number of content objects in the container, depending on which ContainableTypes are supplied as an argument, and restricted by the ResultFilter.
 int CommunityManager.getCombinedContentCount(JiveContainer container, ResultFilter filter, FilteredContentEnabledType... contentTypes)
          Returns the combined number of content objects in the container, depending on which FilteredContentEnabledTypes are supplied as an argument, and restricted by the ResultFilter.
 int TagManager.getContentCount(TagSet tagSet, TaggableType type, JiveContainer container)
          Returns the number of contents of type type that has any of tags of the tag set and belongs to container.
 Document DocumentManager.getDocument(JiveContainer container, String subject)
          Returns a document from a container based on its subject.
 Collection<User> DocumentManager.getDocumentApprovers(JiveContainer container)
          Returns all of the users that must approve new documents before they reach a PUBLISHED state when it is in a PENDING_APPROVAL state.
 int DocumentManager.getDocumentCount(JiveContainer container)
          Returns the number of published documents in the container.
 int DocumentManager.getDocumentCount(JiveContainer container, DocumentResultFilter resultFilter)
          Returns the number of documents in the container {and possibly all child containers (if the container is a community)} based on the specified ResultFilter.
 JiveIterator<Document> DocumentManager.getDocuments(JiveContainer container)
          Returns an Iterable for all the published documents in the container.
 JiveIterator<Document> DocumentManager.getDocuments(JiveContainer container, DocumentResultFilter resultFilter)
          Returns an Iterable for all the documents in the container {and possibly all child containers (if the container is a community)} that match the criteria specified by the ResultFilter.
 JiveIterator<Document> DocumentManager.getDocumentsUnderEdit(JiveContainer container)
          Returns the count of the number of documents currently being editted in the container.
 int DocumentManager.getDocumentsUnderEditCount(JiveContainer container)
          Returns an Iterable of documents currently being editted in the container.
 Document DocumentManager.getLatestDocument(JiveContainer container)
          Returns the most recently created or edited document in this container (including all sub-communities).
 ForumMessage ForumManager.getLatestMessage(JiveContainer container)
          Returns the most recently created or edited message in this container (including all sub-containers if applicable).
 long[] StatusLevelCalculator.getLeaderIds(JiveContainer container, int startIndex, int numResults)
          Returns a long array of user ids of community leaders given a start index and desired number of results.
 Iterable<User> StatusLevelManager.getLeaders(JiveContainer container)
          Returns an Iterable of leaders for a specific container
 Iterable<User> StatusLevelManager.getLeaders(JiveContainer container, int startIndex, int numResults)
          Returns an Iterable of leaders for a specific container
 int ForumManager.getMessageCount(JiveContainer container)
          Acquire the count of all messages for a specified container.
 int OldModerationManager.getMessageCount(JiveContainer container)
          Gets the number of moderated messages in a container
 int ForumManager.getMessageCount(JiveContainer container, ThreadResultFilter resultFilter)
          The account of messages for the JiveContainer with the ThreadResultFilter applied.
 int OldModerationManager.getMessageCount(ModerationFilter modFilter, JiveContainer container)
          Gets the number of moderated messages in a container
 JiveIterator<ForumMessage> ForumManager.getMessages(JiveContainer container)
          Returns an Iterable for all the messages in the container.
 Iterable<ForumMessage> OldModerationManager.getMessages(JiveContainer container)
          Gets a list of moderated messages for a particular container.
 JiveIterator<ForumMessage> ForumManager.getMessages(JiveContainer container, ThreadResultFilter resultFilter)
          Returns an Iterable for all the messages in the container that match the criteria specified by the ResultFilter.
 Iterable<ForumMessage> OldModerationManager.getMessages(ModerationFilter modFilter, JiveContainer container)
          Gets a list of moderated messages for a particular container.
 long StatusLevelCalculator.getPointLevel(User user, JiveContainer container)
          Returns the status level points for a user in regards to a specific community
 long StatusLevelManager.getPointLevel(User user, JiveContainer container)
          Returns the status level points for a user in regards to a specific container
 JiveIterator<Document> ActivityManager.getPopularDocuments(JiveContainer jiveContainer)
          Returns a JiveIterator of popular documents for the container in popularity order.
 JiveIterator<Document> DocumentManager.getPopularDocuments(JiveContainer c)
          Returns the top x documents across a given community & it's subcommunities according to ratings, document views & time passed since the document was created in the languages specified.
 JiveIterator<ForumThread> ActivityManager.getPopularThreads(JiveContainer jiveContainer)
          Returns a JiveIterator of popular threads for the container in popularity order.
 JiveIterator<Video> ActivityManager.getPopularVideos(JiveContainer jiveContainer)
          Returns a JiveIterator of popular videos for the container in popularity order.
 int QuestionManager.getQuestionCount(JiveContainer container)
          Returns the count of all questions in a container.
 int QuestionManager.getQuestionCount(JiveContainer container, QuestionFilter questionFilter)
          Returns the count of questions in a container that pass the specified question filter.
 JiveIterator<Question> QuestionManager.getQuestions(JiveContainer container)
          Returns an iterable for all questions in a container.
 JiveIterator<Question> QuestionManager.getQuestions(JiveContainer container, QuestionFilter questionFilter)
          Returns an iterable for all questions in a categetory that pass the specified question filter.
 boolean ReadTrackerManager.getReadStatus(JiveContainer c, User user, int type)
          Returns true if the user has the specified read status on the object, false otherwise.
 Iterable<Activity> ActivityManager.getRecentActivity(JiveContainer jiveContainer)
          Returns all the recent activities that have occurred in the specified container and all subcontainers.
 Iterable<Activity> ActivityManager.getRecentActivity(JiveContainer jiveContainer, com.google.common.base.Predicate<ActivityBean> predicate)
          Returns all the recent activities matching the provided predicate that have occurred in the specified container and all subcontainers.
 JiveIterator<JiveContentObject> RecentContentManager.getRecentContent(JiveContainer jiveContainer)
          Returns all the recent content for the specified container.
 JiveIterator<JiveContentObject> RecentContentManager.getRecentContent(JiveContainer jiveContainer, com.google.common.base.Predicate<RecentContentBean> predicate)
          Returns all the recent content that pass the provided predicate for the specified container.
 JiveIterator<JiveContentObject> RecentContentManager.getRecentContent(JiveContainer jiveContainer, RecentContentEnabledType[] contentTypes)
          Returns the recent content matching the provided content types for the specified container.
 JiveIterator<JiveContentObject> RecentContentManager.getRecentContent(JiveContainer jiveContainer, RecentContentEnabledType[] contentTypes, com.google.common.base.Predicate<RecentContentBean> predicate)
          Returns the recent content matching the provided content types and predicate for the specified container.
 JiveIterator<JiveContentObject> RecentContentManager.getRecursiveRecentContent(JiveContainer jiveContainer)
          Returns all the recent content for the specified container and all subcontainers.
 JiveIterator<JiveContentObject> RecentContentManager.getRecursiveRecentContent(JiveContainer jiveContainer, com.google.common.base.Predicate<RecentContentBean> predicate)
          Returns all the recent content that pass the provided predicate for the specified container and all subcontainers.
 JiveIterator<JiveContentObject> RecentContentManager.getRecursiveRecentContent(JiveContainer jiveContainer, RecentContentEnabledType[] contentTypes)
          Returns the recent content matching the provided content types for the specified container and all subcontainers.
 JiveIterator<JiveContentObject> RecentContentManager.getRecursiveRecentContent(JiveContainer jiveContainer, RecentContentEnabledType[] contentTypes, com.google.common.base.Predicate<RecentContentBean> predicate)
          Returns the recent content matching the provided content types and predicate for the specified container and all subcontainers.
 StatusLevel StatusLevelManager.getStatusLevel(User user, JiveContainer container)
          Returns the status level for a user in a specific container. if a status level cannot be determined for this user in this container null will be returned.
 JiveIterator<JiveObject> TagManager.getTaggableContent(JiveContainer container)
          Returns an iterator of taggable jive objects for the specific container.
 JiveIterator<JiveObject> TagManager.getTaggableContent(JiveContainer container, ResultFilter resultFilter, Collection<GenericTaggableType> types)
          Returns an iterator of taggable jive objects for the specific container.
 int TagManager.getTaggableContentCount(JiveContainer container)
          Returns a count of taggable jive objects for the specific container.
 int TagManager.getTaggableContentCount(JiveContainer container, ResultFilter resultFilter, Collection<GenericTaggableType> types)
          Returns a cout of taggable jive objects for the specific container.
 Map<String,Integer> TagManager.getTagMap(JiveContainer container)
          Returns all tags for a given container in a Map where the key is the name of tag and the value is the number of times the tag has been used in this container.
 Map<String,Integer> TagManager.getTagMap(JiveContainer container, TagResultFilter resultFilter)
          Returns all tags for a given container in a Map where the key is the name of tag and the value is the number of times the tag has been used in this container filtered by the TagResultFilter.
 Map<String,Integer> TagManager.getTagMap(JiveContainer container, TagResultFilter resultFilter, List<GenericTaggableType> types)
          Returns all tags for a given container in a Map where the key is the name of tag and the value is the number of times the tag has been used in this container filtered by the TagResultFilter.
 JiveIterator<TagSet> TagSetManager.getTagSets(JiveContainer container)
          Returns all TagSets which are defined for the specified JiveContainer.
 int ForumManager.getThreadCount(JiveContainer container)
          Returns the number of threads in the container.
 int ForumManager.getThreadCount(JiveContainer container, ThreadResultFilter resultFilter)
          Returns the number of threads in the container based on the specified ResultFilter.
 JiveIterator<ForumThread> ForumManager.getThreads(JiveContainer container)
          Returns an Iterable for all the threads in the container.
 JiveIterator<ForumThread> ForumManager.getThreads(JiveContainer container, ThreadResultFilter resultFilter)
          Returns an Iterable for all the threads in the container that match the criteria specified by the ResultFilter.
 int ReadTrackerManager.getUnreadMessageCount(User user, JiveContainer container)
          Returns the count of unread messages that the user has in the community.
 JiveIterator<ForumMessage> ReadTrackerManager.getUnreadMessages(User user, JiveContainer container)
          Returns an iterable for the unread messages in the community.
 int ReadTrackerManager.getUnreadThreadCount(User user, JiveContainer container)
          Returns the count of unread threads that the user has in the community.
 JiveIterator<ForumThread> ReadTrackerManager.getUnreadThreads(User user, JiveContainer container)
          Returns an iterable for the unread threads in the community.
 String UserBarProvider.getUserBarChooseContainerActionParams(JiveContainer targetContainer)
           Returns the request parameters required by the struts action used for selecting which container will house the new containable type.
 int WatchManager.getWatchCount(User user, JiveContainer container)
          Return the count of all watches in a particular container for the given user.
 JiveIterator<JiveObject> WatchManager.getWatches(User user, JiveContainer container)
          Returns an Iterable for all the objects a user is watching in a container.
 boolean UserBarProvider.isVisibleOnUserBarBrowseDropDown(JiveContainer currentContainer)
          Returns true if the content type should be visible on the userbar drop down for browsing objects of that type, given the current container.
 boolean UserBarProvider.isVisibleOnUserBarHistoryDropDown(JiveContainer currentContainer)
          Returns true if the content type should be visible on the userbar drop down for browsing objects of that type, given the current container.
 boolean UserBarProvider.isVisibleOnUserBarNewDropDown(JiveContainer currentContainer)
          Returns true if the content type should be visible on the userbar drop down for creating new containable objects, given the current container.
 boolean UserBarProvider.isVisibleOnUserBarYourStuffDropDown(JiveContainer currentContainer)
          Returns true if the content type should be visible on the userbar drop down for navigating to a collection of user's objects, given the current container.
 void BlogManager.mapBlogToContainer(JiveContainer container, Blog blog)
          Associates the specified Blog with a container.
 void ReadTrackerManager.markRead(User user, JiveContainer container)
          Marks an entire continer as read up until the current instant in time.
 void AnnouncementManager.moveAnnouncements(JiveContainer source, JiveContainer destination)
          Moves all announcements from one container to another.
 void BlogManager.moveBlog(Blog blog, JiveContainer destination)
          Moves a blog from its current container to a new container.
 void DocumentManager.moveDocument(Document document, JiveContainer destinationContainer)
          Moves a document from it's current container to another.
 void DraftManager.moveDraftToContainer(JiveContainer destination, Draft draft)
          Moves the draft to the a different container.
 void ForumManager.moveThread(ForumThread thread, JiveContainer newContainer)
          Moves a thread from one container to another.
 void DocumentManager.removeDocumentApprover(JiveContainer container, User user)
          Remove this user as a document approver for this container.
 void Blog.setJiveContainer(JiveContainer container)
          Adds or moves the parent container of the blog.
 void BlogManager.unmapContainerBlog(JiveContainer container, Blog blog)
          Disassociates the specified Blog from this containter.
 boolean ContainableTypeInfoProvider.userHasCreatePermsFor(JiveContainer container, User user)
          Is the currently logged in user allowed to create objects of this type?
 

Method parameters in com.jivesoftware.community with type arguments of type JiveContainer
 Iterable<Activity> ActivityManager.getRecentActivity(Set<JiveContainer> jiveContainers, com.google.common.base.Predicate<ActivityBean> predicate)
          Returns all the recent activities matching the provided predicate that have occurred in the specified containers and all subcontainers of those containers
 JiveIterator<JiveContentObject> RecentContentManager.getRecentContent(Map<JiveContainer,RecentContentEnabledType[]> containerMap, com.google.common.base.Predicate<RecentContentBean> predicate)
          Returns the recent content matching the provided map of container -> content types and predicate.
 

Uses of JiveContainer in com.jivesoftware.community.action
 

Methods in com.jivesoftware.community.action that return JiveContainer
 JiveContainer JiveActionSupport.getPrincipalContainer(JiveContentObject jiveContentObject)
          In most cases this will return the container of the jiveContentObject.
 JiveContainer JiveActionSupport.loadJiveContainer(int objectType, long objectID)
           
 

Methods in com.jivesoftware.community.action that return types with arguments of type JiveContainer
 Iterator<JiveContainer> JiveActionSupport.getUserTrackedProjects()
           
 

Uses of JiveContainer in com.jivesoftware.community.event
 

Constructors in com.jivesoftware.community.event with parameters of type JiveContainer
BlogPostEvent(BlogPostEvent.Type eventType, BlogPost post, JiveContainer c, Map<String,? extends Object> params)
           
DocumentEvent(DocumentEvent.Type type, Document d, JiveContainer c)
           
DocumentEvent(DocumentEvent.Type type, Document d, JiveContainer c, Map<String,? extends Object> params)
           
DocumentEvent(DocumentEvent.Type type, EntityDescriptor d, JiveContainer c)
           
MessageEvent(MessageEvent.Type eventType, EntityDescriptor message, JiveContainer container, Map<String,? extends Object> params)
          Creates a new message event.
MessageEvent(MessageEvent.Type eventType, ForumMessage message, JiveContainer container, Map<String,? extends Object> params)
          Creates a new message event.
PollEvent(PollEvent.Type eventType, Poll poll, JiveContainer container, Map<String,?> params)
          Creates a new message event.
PollEvent(PollEvent.Type eventType, Poll poll, JiveContainer container, Map<String,?> params, User user)
           
TaskEvent(TaskEvent.Type eventType, Task task, JiveContainer container, Map<String,Object> params)
          Creates a new task event.
ThreadEvent(ThreadEvent.Type eventType, ForumThread thread, JiveContainer container, Map<String,? extends Object> params)
          Creates a new thread event.
 

Uses of JiveContainer in com.jivesoftware.community.favorites.type
 

Methods in com.jivesoftware.community.favorites.type that return JiveContainer
 JiveContainer FavoriteInfoProvider.getContainer(O object)
           
 

Uses of JiveContainer in com.jivesoftware.community.featured
 

Methods in com.jivesoftware.community.featured with parameters of type JiveContainer
 void FeaturedContentManager.appendFeaturedItems(JiveContainer container, JiveObject... toFeature)
          Appends items to the currently featured items in the given container
 void FeaturedContentManager.clearFeaturedItem(JiveContainer container, JiveObject toClear)
          Remove the specific featured item from the given container IMPLEMENTATION NOTE: Any new object types that are added as featured content should have their delete event add to the list of enums represented by the field itemDeleteEvents in FeaturedContentManagerImpl.
 void FeaturedContentManager.clearFeaturedItems(JiveContainer container)
          Removes all featured item entries in the given container.
 void FeaturedContentManager.clearFeaturedItems(JiveContainer container, Integer... objectTypeFilter)
          Removes all featured item entries in the given container that match the given object types IMPLEMENTATION NOTE: Any new object types that are added as featured content should have their delete event add to the list of enums represented by the field itemDeleteEvents in FeaturedContentManagerImpl.
 JiveObject FeaturedContentManager.getFeaturedItem(JiveContainer container)
          Returns a featured item of an undetermined object type from the given container.
 JiveObject FeaturedContentManager.getFeaturedItem(JiveContainer container, Integer... objectTypeFilter)
          Returns the first featured item matching the given object types from the given container.
 int FeaturedContentManager.getFeaturedItemCount(JiveContainer container)
          Returns the total number of featured items in the container
 int FeaturedContentManager.getFeaturedItemCount(JiveContainer container, Integer... objectTypeFilter)
          Returns the total number of featured items in the container matching any of the given objec types
 JiveIterator<JiveObject> FeaturedContentManager.getFeaturedItems(JiveContainer container)
          Returns all featured items of all object types in the given container
 JiveIterator<JiveObject> FeaturedContentManager.getFeaturedItems(JiveContainer container, Integer... objectTypeFilter)
          Returns all featured items of the given object types in the given container
 boolean FeaturedContentManager.isFeatured(JiveContainer container, JiveObject object)
          Returns true if the given item is featured in the given container, false otherwise.
 void FeaturedContentManager.setFeaturedItems(JiveContainer container, JiveObject... toFeature)
          Replaces all featured items in the given container with the given items
 

Uses of JiveContainer in com.jivesoftware.community.impl.activity
 

Methods in com.jivesoftware.community.impl.activity that return JiveContainer
protected  JiveContainer DefaultContentActivityEventHandlingStrategy.loadContainer(int objectType, long objectID)
           
 

Uses of JiveContainer in com.jivesoftware.community.media
 

Fields in com.jivesoftware.community.media declared as JiveContainer
protected  JiveContainer MediaActionSupport.container
           
 

Methods in com.jivesoftware.community.media that return JiveContainer
 JiveContainer MediaActionSupport.getContainer()
           
 JiveContainer Media.getJiveContainer()
           
 JiveContainer MediaContainableTypeInfoProvider.getUserPersonalContainerForContentType(User owner)
           
 

Methods in com.jivesoftware.community.media with parameters of type JiveContainer
 void MediaManager.move(Media toMove, JiveContainer target)
          Moves a video from one container to another.
 void MediaResultFilter.setContainer(JiveContainer container)
           
 boolean MediaContainableTypeInfoProvider.userHasCreatePermsFor(JiveContainer container, User user)
           
 

Uses of JiveContainer in com.jivesoftware.community.media.authz
 

Methods in com.jivesoftware.community.media.authz with parameters of type JiveContainer
static boolean VideoPermHelper.getCanCreateVideo(JiveContainer jiveContainer)
          Returns true if the effective user can create videos in the given container, false otherwise.
static boolean VideoPermHelper.getCanCreateVideo(User user, JiveContainer container)
          Returns true if the given user can create videos in the given container, false otherwise.
static boolean VideoPermHelper.getCanMoveVideo(User user, Video video, JiveContainer target)
          Returns true if the given user is permitted to move the given video from its current location to the target container, false otherwise.
static boolean VideoPermHelper.getCanMoveVideo(Video video, JiveContainer target)
          Returns true if the effective user is permitted to move the given video from its current location to the target container, false otherwise.
static boolean VideoPermHelper.isVideoEnabled(JiveContainer container)
          Returns true if video is enabled in the given container
 

Uses of JiveContainer in com.jivesoftware.community.media.type
 

Methods in com.jivesoftware.community.media.type with parameters of type JiveContainer
 MoveContentProvider.MoveValidationResult MoveMediaContentProvider.canMoveContent(Media toMove, JiveContainer target)
           
 boolean MediaProxyInfoProvider.getCanMove(Media media, JiveContainer target)
          Returns true iff the currently effective user has rights to move the given media object to the target container
 void MoveMediaContentProvider.moveContent(Media toMove, JiveContainer target)
           
 

Uses of JiveContainer in com.jivesoftware.community.media.video
 

Methods in com.jivesoftware.community.media.video with parameters of type JiveContainer
static VideoResultFilter VideoResultFilter.createDefaultContainerFilter(JiveContainer container)
           
 void VideoDAO.move(Video video, JiveContainer target)
          Moves a video from its current location to the given target location
 

Uses of JiveContainer in com.jivesoftware.community.moderation
 

Methods in com.jivesoftware.community.moderation with parameters of type JiveContainer
 boolean JiveObjectModerator.isModerationEnabled(JiveContainer jiveContainer, JiveObject jiveObject, User user)
          Determines if moderation is enabled for the given JiveContainer and object Type.
 boolean ModerationStrategy.shouldModerate(JiveContainer jiveContainer, int objectType, User user)
          Determines if moderation is enabled for the given JiveContainer and object Type.
 

Uses of JiveContainer in com.jivesoftware.community.objecttype
 

Methods in com.jivesoftware.community.objecttype with parameters of type JiveContainer
 MoveContentProvider.MoveValidationResult MoveContentProvider.canMoveContent(T toMove, JiveContainer target)
          Returns a MoveContentProvider.MoveValidationResult with the value of true if the content object to be moved is valid to be moved from its current container to the target container.
 void ContainableTypeManager.deleteAllContent(JiveContainer container)
          Deletes all contents, and the related information, of the current type and its subtypes that belongs to the container.
 int ContainableTypeManager.getContentCount(JiveContainer container, boolean recursive)
          Returns the number of elements that the container has of this type and its subtypes.
 String ContentObjectTypeInfoProvider.getCreateNewFormRelativeURL(JiveContainer targetContainer, boolean isUpload, String tempObjectId, String tags, String subject)
           This method should return the relative URL pointing to the page which will allow users to create a new instance of the type.
 void MoveContentProvider.moveContent(T toMove, JiveContainer target)
          Moves the given content object from its current location to the target container
 boolean ContentObjectTypeInfoProvider.userHasCreatePermsFor(JiveContainer container)
          Return true if the currently logged in user is allowed to create objects of this type in the specified container.
 

Uses of JiveContainer in com.jivesoftware.community.project
 

Subinterfaces of JiveContainer in com.jivesoftware.community.project
 interface Project
          A container for threads, documents and tasks.
 

Methods in com.jivesoftware.community.project with parameters of type JiveContainer
 Project ProjectManager.create(JiveContainer container, String name, String description, User user, List<CheckPoint> checkPoints, Date dueDate)
          Creates a new project as a child of the parent container
 

Uses of JiveContainer in com.jivesoftware.community.renderer
 

Methods in com.jivesoftware.community.renderer with parameters of type JiveContainer
 RenderManager RenderManager.getRenderManager(JiveContainer container)
          Returns the RenderManager associated with the container.
 

Uses of JiveContainer in com.jivesoftware.community.socialgroup
 

Subinterfaces of JiveContainer in com.jivesoftware.community.socialgroup
 interface SocialGroup
          The container representing social groups in Jive SBS.
 

Uses of JiveContainer in com.jivesoftware.community.widget
 

Methods in com.jivesoftware.community.widget that return JiveContainer
 JiveContainer BaseWidgetContext.getContainer()
          Subclasses should override this method to provide their container.
 JiveContainer CommunityWidgetContext.getContainer()
          Return the community container from the widget context.
 JiveContainer HomepageWidgetContext.getContainer()
           
 JiveContainer PersonalizedHomepageWidgetContext.getContainer()
           
 JiveContainer ProjectWidgetContext.getContainer()
          Get the blog container from the widget context.
protected  JiveContainer BaseWidget.getContainerFromContext(WidgetContext widgetContext)
          If this widget is a community, project, or social group widget, returns the community, project, or group.
 

Uses of JiveContainer in com.jivesoftware.community.xmpp
 

Methods in com.jivesoftware.community.xmpp with parameters of type JiveContainer
 boolean IMManager.isChatEnabled(JiveContainer container)
          Returns true if Chat functionality is enabled for a container.
 


Jive Product Page

Copyright © 1999-2007 Jive Software.