Uses of Interface
org.jasig.portal.portlet.om.IPortletEntity

Packages that use IPortletEntity
org.jasig.portal.io.support   
org.jasig.portal.portlet.dao   
org.jasig.portal.portlet.dao.jpa   
org.jasig.portal.portlet.dao.trans   
org.jasig.portal.portlet.registry   
org.jasig.portal.portlet.rendering   
 

Uses of IPortletEntity in org.jasig.portal.io.support
 

Methods in org.jasig.portal.io.support that return IPortletEntity
protected  IPortletEntity PortletEntityPreferenceHandler.getPortletEntity(String fName, String channelSubscribeId, int userId)
           
 

Methods in org.jasig.portal.io.support that return types with arguments of type IPortletEntity
 Set<IPortletEntity> PortletEntityPreferenceHandler.getEntityPreferences(Integer userId)
           
 

Uses of IPortletEntity in org.jasig.portal.portlet.dao
 

Methods in org.jasig.portal.portlet.dao that return IPortletEntity
 IPortletEntity IPortletEntityDao.createPortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
          Creates, initializes and persists a new IPortletEntity based on the specified IPortletDefinitionId, channel subscribe id and user id.
 IPortletEntity IPortletEntityDao.getPortletEntity(IPortletEntityId portletEntityId)
          Get a IPortletEntity for the specified IPortletEntityId.
 IPortletEntity IPortletEntityDao.getPortletEntity(String channelSubscribeId, int userId)
          Get a IPortletEntity for the specified channel subscribe id and user id.
 

Methods in org.jasig.portal.portlet.dao that return types with arguments of type IPortletEntity
 Set<IPortletEntity> IPortletEntityDao.getPortletEntities(IPortletDefinitionId portletDefinitionId)
          Get all IPortletEntitys based on the specified IPortletDefinitionId.
 Set<IPortletEntity> IPortletEntityDao.getPortletEntitiesForUser(int userId)
          Get all IPortletEntitys that exist for the specified user id.
 

Methods in org.jasig.portal.portlet.dao with parameters of type IPortletEntity
 void IPortletEntityDao.deletePortletEntity(IPortletEntity portletEntity)
          Removes the specified IPortletEntity from the persistent store.
 void IPortletEntityDao.updatePortletEntity(IPortletEntity portletEntity)
          Persists changes to a IPortletEntity.
 

Uses of IPortletEntity in org.jasig.portal.portlet.dao.jpa
 

Methods in org.jasig.portal.portlet.dao.jpa that return IPortletEntity
 IPortletEntity JpaPortletEntityDao.createPortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
           
 IPortletEntity JpaPortletEntityDao.getPortletEntity(IPortletEntityId portletEntityId)
           
 IPortletEntity JpaPortletEntityDao.getPortletEntity(String channelSubscribeId, int userId)
           
 

Methods in org.jasig.portal.portlet.dao.jpa that return types with arguments of type IPortletEntity
 Set<IPortletEntity> JpaPortletEntityDao.getPortletEntities(IPortletDefinitionId portletDefinitionId)
           
 Set<IPortletEntity> JpaPortletEntityDao.getPortletEntitiesForUser(int userId)
           
 

Methods in org.jasig.portal.portlet.dao.jpa with parameters of type IPortletEntity
 void JpaPortletEntityDao.deletePortletEntity(IPortletEntity portletEntity)
           
 void JpaPortletEntityDao.updatePortletEntity(IPortletEntity portletEntity)
           
 

Uses of IPortletEntity in org.jasig.portal.portlet.dao.trans
 

Methods in org.jasig.portal.portlet.dao.trans that return IPortletEntity
 IPortletEntity TransientPortletEntityDao.createPortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
           
 IPortletEntity TransientPortletEntityDao.getPortletEntity(IPortletEntityId portletEntityId)
           
 IPortletEntity TransientPortletEntityDao.getPortletEntity(String channelSubscribeId, int userId)
           
protected  IPortletEntity TransientPortletEntityDao.unwrapEntity(IPortletEntity portletEntity)
          Returns the unwrapped entity if it is an instance of TransientPortletEntity.
protected  IPortletEntity TransientPortletEntityDao.wrapEntity(IPortletEntity portletEntity)
          Adds a TransientPortletEntity wrapper to the portletEntity if it is needed.
 

Methods in org.jasig.portal.portlet.dao.trans that return types with arguments of type IPortletEntity
 Set<IPortletEntity> TransientPortletEntityDao.getPortletEntities(IPortletDefinitionId portletDefinitionId)
           
 Set<IPortletEntity> TransientPortletEntityDao.getPortletEntitiesForUser(int userId)
           
protected  Set<IPortletEntity> TransientPortletEntityDao.wrapEntities(Set<IPortletEntity> portletEntities)
          Calles TransientPortletEntityDao.wrapEntity(IPortletEntity) on each entry in the Set, wrap calls that return null result in the entitiy being dropped from the returned Set
 

Methods in org.jasig.portal.portlet.dao.trans with parameters of type IPortletEntity
 void TransientPortletEntityDao.deletePortletEntity(IPortletEntity portletEntity)
           
protected  IPortletEntity TransientPortletEntityDao.unwrapEntity(IPortletEntity portletEntity)
          Returns the unwrapped entity if it is an instance of TransientPortletEntity.
 void TransientPortletEntityDao.updatePortletEntity(IPortletEntity portletEntity)
           
protected  IPortletEntity TransientPortletEntityDao.wrapEntity(IPortletEntity portletEntity)
          Adds a TransientPortletEntity wrapper to the portletEntity if it is needed.
 

Method parameters in org.jasig.portal.portlet.dao.trans with type arguments of type IPortletEntity
protected  Set<IPortletEntity> TransientPortletEntityDao.wrapEntities(Set<IPortletEntity> portletEntities)
          Calles TransientPortletEntityDao.wrapEntity(IPortletEntity) on each entry in the Set, wrap calls that return null result in the entitiy being dropped from the returned Set
 

Uses of IPortletEntity in org.jasig.portal.portlet.registry
 

Methods in org.jasig.portal.portlet.registry that return IPortletEntity
 IPortletEntity IPortletEntityRegistry.createPortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
          Creates a new, persisted, portlet entity for the published and subscribed to channel.
 IPortletEntity PortletEntityRegistryImpl.createPortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
           
 IPortletEntity IPortletEntityRegistry.getOrCreatePortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
          Convience for IPortletEntityRegistry.getPortletEntity(String, int) and IPortletEntityRegistry.createPortletEntity(IPortletDefinitionId, String, int).
 IPortletEntity PortletEntityRegistryImpl.getOrCreatePortletEntity(IPortletDefinitionId portletDefinitionId, String channelSubscribeId, int userId)
           
 IPortletEntity IPortletWindowRegistry.getParentPortletEntity(HttpServletRequest request, IPortletWindowId portletWindowId)
          Gets the parent portlet entity for the window specified by the window id.
 IPortletEntity PortletWindowRegistryImpl.getParentPortletEntity(HttpServletRequest request, IPortletWindowId portletWindowId)
           
 IPortletEntity IPortletEntityRegistry.getPortletEntity(IPortletEntityId portletEntityId)
          Get an existing portlet entity for the entity id.
 IPortletEntity PortletEntityRegistryImpl.getPortletEntity(IPortletEntityId portletEntityId)
           
 IPortletEntity IPortletEntityRegistry.getPortletEntity(String portletEntityIdString)
          Get an existing portlet entity for the String version of the entity id.
 IPortletEntity PortletEntityRegistryImpl.getPortletEntity(String portletEntityIdString)
           
 IPortletEntity IPortletEntityRegistry.getPortletEntity(String channelSubscribeId, int userId)
          Get an existing portlet entity for the channel subscribe id and person.
 IPortletEntity PortletEntityRegistryImpl.getPortletEntity(String channelSubscribeId, int userId)
           
 

Methods in org.jasig.portal.portlet.registry that return types with arguments of type IPortletEntity
 Set<IPortletEntity> IPortletEntityRegistry.getPortletEntitiesForUser(int userId)
          Get all IPortletEntitys that exist for the specified user id.
 Set<IPortletEntity> PortletEntityRegistryImpl.getPortletEntitiesForUser(int userId)
           
 

Methods in org.jasig.portal.portlet.registry with parameters of type IPortletEntity
 void IPortletEntityRegistry.deletePortletEntity(IPortletEntity portletEntity)
          Removes a portlet entity and all related data from the persistent store.
 void PortletEntityRegistryImpl.deletePortletEntity(IPortletEntity portletEntity)
           
 void IPortletEntityRegistry.storePortletEntity(IPortletEntity portletEntity)
          Stores changes made to an existing portlet entity
 void PortletEntityRegistryImpl.storePortletEntity(IPortletEntity portletEntity)
           
 

Uses of IPortletEntity in org.jasig.portal.portlet.rendering
 

Methods in org.jasig.portal.portlet.rendering with parameters of type IPortletEntity
 IPortletWindowId PortletRendererImpl.doInit(IPortletEntity portletEntity, IPortletWindowId portletWindowId, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse)
           
 IPortletWindowId IPortletRenderer.doInit(IPortletEntity portletEntity, IPortletWindowId portletWindowId, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse)
          Initializes the portlet within the portlet container
 



Copyright © 2010 Jasig. All Rights Reserved.