Uses of Class
org.jasig.portal.ChannelCategory

Packages that use ChannelCategory
org.jasig.portal   
org.jasig.portal.channel   
org.jasig.portal.layout.dlm.remoting   
org.jasig.portal.layout.dlm.remoting.registry   
 

Uses of ChannelCategory in org.jasig.portal
 

Methods in org.jasig.portal that return ChannelCategory
 ChannelCategory[] AbstractChannelRegistryStore.getAllChildCategories(ChannelCategory parent)
          Deprecated. Gets all child channel categories for a parent category.
 ChannelCategory[] IChannelRegistryStore.getAllChildCategories(ChannelCategory parent)
          Deprecated. Recursively gets all child channel categories for a parent category.
 ChannelCategory AbstractChannelRegistryStore.getChannelCategory(String channelCategoryId)
          Deprecated. Gets an existing channel category.
 ChannelCategory IChannelRegistryStore.getChannelCategory(String channelCategoryId)
          Deprecated. Gets an existing channel category.
 ChannelCategory[] AbstractChannelRegistryStore.getChildCategories(ChannelCategory parent)
          Deprecated. Gets all child channel categories for a parent category.
 ChannelCategory[] IChannelRegistryStore.getChildCategories(ChannelCategory parent)
          Deprecated. Gets all child channel categories for a parent category.
 ChannelCategory[] AbstractChannelRegistryStore.getParentCategories(ChannelCategory child)
          Deprecated. Gets the immediate parent categories of this category.
 ChannelCategory[] IChannelRegistryStore.getParentCategories(ChannelCategory child)
          Deprecated. Gets the immediate parent categories of this category.
 ChannelCategory[] AbstractChannelRegistryStore.getParentCategories(IChannelDefinition child)
          Deprecated. Gets the immediate parent categories of this channel definition.
 ChannelCategory[] IChannelRegistryStore.getParentCategories(IChannelDefinition child)
          Deprecated. Gets the immediate parent categories of this channel definition.
 ChannelCategory AbstractChannelRegistryStore.getTopLevelChannelCategory()
          Deprecated. Gets top level channel category
 ChannelCategory IChannelRegistryStore.getTopLevelChannelCategory()
          Deprecated. Gets top level channel category
 ChannelCategory AbstractChannelRegistryStore.newChannelCategory()
          Deprecated. Creates a new channel category.
 ChannelCategory IChannelRegistryStore.newChannelCategory()
          Deprecated. Creates a new channel category.
 ChannelCategory AbstractChannelRegistryStore.newChannelCategory(String name, String description, String creatorId)
          Deprecated. Creates a new channel category with the specified values.
 ChannelCategory IChannelRegistryStore.newChannelCategory(String name, String description, String creatorId)
          Deprecated. Creates a new channel category with the specified values.
 

Methods in org.jasig.portal with parameters of type ChannelCategory
 void AbstractChannelRegistryStore.addCategoryToCategory(ChannelCategory child, ChannelCategory parent)
          Deprecated. Makes one category a child of another.
 void IChannelRegistryStore.addCategoryToCategory(ChannelCategory source, ChannelCategory destination)
          Deprecated. Makes one category a child of another.
 void AbstractChannelRegistryStore.addChannelToCategory(IChannelDefinition channelDef, ChannelCategory category)
          Deprecated. Associates a channel definition with a category.
 void IChannelRegistryStore.addChannelToCategory(IChannelDefinition channelDef, ChannelCategory category)
          Deprecated. Associates a channel definition with a category.
 void AbstractChannelRegistryStore.deleteChannelCategory(ChannelCategory category)
          Deprecated. Deletes a channel category.
 void IChannelRegistryStore.deleteChannelCategory(ChannelCategory category)
          Deprecated. Deletes a channel category.
 ChannelCategory[] AbstractChannelRegistryStore.getAllChildCategories(ChannelCategory parent)
          Deprecated. Gets all child channel categories for a parent category.
 ChannelCategory[] IChannelRegistryStore.getAllChildCategories(ChannelCategory parent)
          Deprecated. Recursively gets all child channel categories for a parent category.
 IChannelDefinition[] AbstractChannelRegistryStore.getAllChildChannels(ChannelCategory parent)
          Deprecated. Gets all child channel definitions for a parent category.
 IChannelDefinition[] IChannelRegistryStore.getAllChildChannels(ChannelCategory parent)
          Deprecated. Recursively gets all child channel definitions for a parent category.
 IChannelDefinition[] AbstractChannelRegistryStore.getAllChildChannels(ChannelCategory parent, IPerson person)
          Deprecated.  
 IChannelDefinition[] IChannelRegistryStore.getAllChildChannels(ChannelCategory parent, IPerson person)
          Deprecated. Recursively gets all child channel definitions for a parent category that the given user is allowed to subscribe to.
 IChannelDefinition[] AbstractChannelRegistryStore.getAllManageableChildChannels(ChannelCategory parent, IPerson person)
          Deprecated.  
 IChannelDefinition[] IChannelRegistryStore.getAllManageableChildChannels(ChannelCategory parent, IPerson person)
          Deprecated. Recursively gets all child channel definitions for a parent category that the given user is allowed to manage.
 ChannelCategory[] AbstractChannelRegistryStore.getChildCategories(ChannelCategory parent)
          Deprecated. Gets all child channel categories for a parent category.
 ChannelCategory[] IChannelRegistryStore.getChildCategories(ChannelCategory parent)
          Deprecated. Gets all child channel categories for a parent category.
 IChannelDefinition[] AbstractChannelRegistryStore.getChildChannels(ChannelCategory parent)
          Deprecated. Gets all child channel definitions for a parent category.
 IChannelDefinition[] IChannelRegistryStore.getChildChannels(ChannelCategory parent)
          Deprecated. Gets all child channel definitions for a parent category.
 IChannelDefinition[] AbstractChannelRegistryStore.getChildChannels(ChannelCategory parent, IPerson person)
          Deprecated. Gets all child channel definitions for a parent category that the given user is allowed to subscribe to.
 IChannelDefinition[] IChannelRegistryStore.getChildChannels(ChannelCategory parent, IPerson person)
          Deprecated. Gets all child channel definitions for a parent category that the given user is allowed to subscribe to.
 IChannelDefinition[] AbstractChannelRegistryStore.getManageableChildChannels(ChannelCategory parent, IPerson person)
          Deprecated.  
 IChannelDefinition[] IChannelRegistryStore.getManageableChildChannels(ChannelCategory parent, IPerson person)
          Deprecated. Gets all child channel definitions for a parent category that the given user is allowed to manage.
 ChannelCategory[] AbstractChannelRegistryStore.getParentCategories(ChannelCategory child)
          Deprecated. Gets the immediate parent categories of this category.
 ChannelCategory[] IChannelRegistryStore.getParentCategories(ChannelCategory child)
          Deprecated. Gets the immediate parent categories of this category.
 void AbstractChannelRegistryStore.removeCategoryFromCategory(ChannelCategory child, ChannelCategory parent)
          Deprecated. Makes one category a child of another.
 void IChannelRegistryStore.removeCategoryFromCategory(ChannelCategory child, ChannelCategory parent)
          Deprecated. Makes one category a child of another.
 void AbstractChannelRegistryStore.removeChannelFromCategory(IChannelDefinition channelDef, ChannelCategory category)
          Deprecated. Disassociates a channel definition from a category.
 void IChannelRegistryStore.removeChannelFromCategory(IChannelDefinition channelDef, ChannelCategory category)
          Deprecated. Disassociates a channel definition from a category.
 void AbstractChannelRegistryStore.saveChannelCategory(ChannelCategory category)
          Deprecated. Persists a channel category.
 void IChannelRegistryStore.saveChannelCategory(ChannelCategory category)
          Deprecated. Persists a channel category.
 

Uses of ChannelCategory in org.jasig.portal.channel
 

Methods in org.jasig.portal.channel with parameters of type ChannelCategory
 IChannelDefinition ChannelPublishingServiceImpl.saveChannelDefinition(IChannelDefinition definition, IPerson publisher, ChannelCategory[] categories, IGroupMember[] groupMembers)
           
 IChannelDefinition IChannelPublishingService.saveChannelDefinition(IChannelDefinition definition, IPerson publisher, ChannelCategory[] categories, IGroupMember[] groupMembers)
          Deprecated.  
 

Uses of ChannelCategory in org.jasig.portal.layout.dlm.remoting
 

Constructors in org.jasig.portal.layout.dlm.remoting with parameters of type ChannelCategory
JsonEntityBean(ChannelCategory category)
           
 

Uses of ChannelCategory in org.jasig.portal.layout.dlm.remoting.registry
 

Constructors in org.jasig.portal.layout.dlm.remoting.registry with parameters of type ChannelCategory
ChannelCategoryBean(ChannelCategory category)
           
 



Copyright © 2010 Jasig. All Rights Reserved.