Uses of Class
org.jasig.portal.UserProfile

Packages that use UserProfile
org.jasig.portal   
org.jasig.portal.channels.DLMUserPreferences   
org.jasig.portal.channels.UserPreferences   
org.jasig.portal.events.support   
org.jasig.portal.layout Interfaces and classes for basic layouts support. 
org.jasig.portal.layout.dlm Interfaces and classes in support of Distributed Layout Management. 
org.jasig.portal.layout.simple Intefaces and classes primarily for Simple Layouts. 
org.jasig.portal.services.stats   
 

Uses of UserProfile in org.jasig.portal
 

Fields in org.jasig.portal declared as UserProfile
protected  UserProfile UserPreferences.profile
           
 

Methods in org.jasig.portal that return UserProfile
 UserProfile GuestUserPreferencesManager.getCurrentProfile()
           
 UserProfile GuestUserPreferencesManagerWrapper.getCurrentProfile()
          Returns current profile.
 UserProfile IUserPreferencesManager.getCurrentProfile()
          Returns current profile.
 UserProfile UserPreferencesManager.getCurrentProfile()
           
 UserProfile GuestUserPreferencesManager.getCurrentProfile(String sessionId)
          Returns current profile
 UserProfile UserPreferences.getProfile()
           
 

Methods in org.jasig.portal with parameters of type UserProfile
 void UserPreferences.setProfile(UserProfile p)
           
 

Constructors in org.jasig.portal with parameters of type UserProfile
UserPreferences(UserProfile p)
           
UserProfile(UserProfile userProfile)
           
 

Uses of UserProfile in org.jasig.portal.channels.DLMUserPreferences
 

Methods in org.jasig.portal.channels.DLMUserPreferences that return UserProfile
protected  UserProfile CUserPreferences.getEditedUserProfile()
          Deprecated.  
 

Methods in org.jasig.portal.channels.DLMUserPreferences with parameters of type UserProfile
protected  UserPreferences CUserPreferences.getUserPreferencesFromStore(UserProfile profile)
          Deprecated.  
 

Uses of UserProfile in org.jasig.portal.channels.UserPreferences
 

Methods in org.jasig.portal.channels.UserPreferences that return UserProfile
protected  UserProfile CUserPreferences.getEditedUserProfile()
          Deprecated.  
 

Methods in org.jasig.portal.channels.UserPreferences with parameters of type UserProfile
protected  UserPreferences CUserPreferences.getUserPreferencesFromStore(UserProfile profile)
          Deprecated.  
 

Uses of UserProfile in org.jasig.portal.events.support
 

Methods in org.jasig.portal.events.support that return UserProfile
 UserProfile ChannelLayoutPortalEvent.getProfile()
           
 UserProfile LayoutPortalEvent.getProfile()
           
 

Constructors in org.jasig.portal.events.support with parameters of type UserProfile
ChannelAddedToLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode)
           
ChannelInstanciatedInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode)
           
ChannelLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode, EventType eventType)
           
ChannelMovedInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription oldParentNode, IUserLayoutNodeDescription newParentNode)
           
ChannelRemovedFromLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode)
           
ChannelRenderedInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode, long renderTime, boolean renderedFromCache)
           
ChannelTargetedInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode)
           
ChannelUpdatedInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode)
           
LayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutFolderDescription folder, EventType eventType)
           
PageRenderTimePortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutFolderDescription folder, long renderTime)
           
PortletActionInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode, long renderTime)
           
TimedChannelLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutChannelDescription description, IUserLayoutNodeDescription parentNode, long renderTime, EventType eventType)
           
UserAddedFolderToLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutFolderDescription folder)
           
UserMovedFolderInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutFolderDescription folder)
           
UserRemovedFolderFromLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutFolderDescription folder)
           
UserUpdatedFolderInLayoutPortalEvent(Object source, IPerson person, UserProfile profile, IUserLayoutFolderDescription folder)
           
 

Uses of UserProfile in org.jasig.portal.layout
 

Methods in org.jasig.portal.layout that return UserProfile
 UserProfile IUserLayoutStore.addSystemProfile(UserProfile profile)
          add a new system profile to the database.
 UserProfile IUserLayoutStore.addUserProfile(IPerson person, UserProfile profile)
          Creates a new user profile in the database.
 UserProfile IUserLayoutStore.getSystemProfile(String userAgent)
          retreive a system profile associated with a given browser
 UserProfile IUserLayoutStore.getSystemProfileByFname(String profileFname)
           
 UserProfile IUserLayoutStore.getSystemProfileById(int profileId)
          Obtain a system profile
 UserProfile IUserLayoutStore.getUserProfile(IPerson person, String userAgent)
          Obtain user profile associated with a particular browser
 UserProfile IUserLayoutStore.getUserProfileByFname(IPerson person, String profileFname)
          Obtains a user profile by profile functional name.
 UserProfile IUserLayoutStore.getUserProfileById(IPerson person, int profileId)
          Obtains a user profile by profile id.
 

Methods in org.jasig.portal.layout that return types with arguments of type UserProfile
 Hashtable<Integer,UserProfile> IUserLayoutStore.getUserProfileList(IPerson person)
          retreive a list of profiles associated with a user
 

Methods in org.jasig.portal.layout with parameters of type UserProfile
 UserProfile IUserLayoutStore.addSystemProfile(UserProfile profile)
          add a new system profile to the database.
 UserProfile IUserLayoutStore.addUserProfile(IPerson person, UserProfile profile)
          Creates a new user profile in the database.
 org.dom4j.Element IUserLayoutStore.exportLayout(IPerson person, UserProfile profile)
          Returns an Element representing the user's layout and UserPreferences (but not portlet preferences) formatted for export.
 Document IUserLayoutStore.getUserLayout(IPerson Person, UserProfile profile)
          Retrieve a user layout document.
static IUserLayoutManager UserLayoutManagerFactory.getUserLayoutManager(IPerson person, UserProfile profile)
          Obtain a regular user layout manager implementation
 UserPreferences IUserLayoutStore.getUserPreferences(IPerson person, UserProfile profile)
          Retreive the entire UserPreferences object
 void IUserLayoutStore.setUserLayout(IPerson Person, UserProfile profile, Document layoutXML, boolean channelsAdded)
          Persist user layout document.
 void IUserLayoutStore.updateSystemProfile(UserProfile profile)
          update system profile
 void IUserLayoutStore.updateUserProfile(IPerson person, UserProfile profile)
          update user profile
 

Uses of UserProfile in org.jasig.portal.layout.dlm
 

Fields in org.jasig.portal.layout.dlm declared as UserProfile
protected  UserProfile DistributedLayoutManager.profile
           
 

Methods in org.jasig.portal.layout.dlm with parameters of type UserProfile
 void ILayoutCachingService.cacheLayout(IPerson owner, UserProfile profile, Document layout)
           
 void LayoutCachingService.cacheLayout(IPerson owner, UserProfile profile, Document layout)
           
 void LayoutDecorator.decorate(Document layout, IPerson person, UserProfile profile)
           
 org.dom4j.Element RDBMDistributedLayoutStore.exportLayout(IPerson person, UserProfile profile)
           
 Document ILayoutCachingService.getCachedLayout(IPerson owner, UserProfile profile)
           
 Document LayoutCachingService.getCachedLayout(IPerson owner, UserProfile profile)
           
protected  Serializable LayoutCachingService.getCacheKey(IPerson owner, UserProfile profile)
           
 Document RDBMDistributedLayoutStore.getUserLayout(IPerson person, UserProfile profile)
          Returns the layout for a user decorated with any specified decorator.
 void ILayoutCachingService.removeCachedLayout(IPerson owner, UserProfile profile)
           
 void LayoutCachingService.removeCachedLayout(IPerson owner, UserProfile profile)
           
 void RDBMDistributedLayoutStore.setUserLayout(IPerson person, UserProfile profile, Document layoutXML, boolean channelsAdded)
          This method overrides the same method in the super class to persist only layout information stored in the user's person layout fragment or PLF.
 

Constructors in org.jasig.portal.layout.dlm with parameters of type UserProfile
DistributedLayoutManager(IPerson owner, UserProfile profile, IUserLayoutStore store)
           
 

Uses of UserProfile in org.jasig.portal.layout.simple
 

Fields in org.jasig.portal.layout.simple declared as UserProfile
protected  UserProfile SimpleUserLayoutManager.profile
           
 

Methods in org.jasig.portal.layout.simple that return UserProfile
 UserProfile RDBMUserLayoutStore.addSystemProfile(UserProfile profile)
           
 UserProfile RDBMUserLayoutStore.addUserProfile(IPerson person, UserProfile profile)
          Add a user profile
 UserProfile RDBMUserLayoutStore.getSystemProfile(String userAgent)
           
 UserProfile RDBMUserLayoutStore.getSystemProfileByFname(String profileFname)
           
 UserProfile RDBMUserLayoutStore.getSystemProfileById(int profileId)
           
 UserProfile RDBMUserLayoutStore.getUserProfile(IPerson person, String userAgent)
           
 UserProfile RDBMUserLayoutStore.getUserProfileByFname(IPerson person, String profileFname)
           
 UserProfile RDBMUserLayoutStore.getUserProfileById(IPerson person, int profileId)
           
 

Methods in org.jasig.portal.layout.simple with parameters of type UserProfile
 UserProfile RDBMUserLayoutStore.addSystemProfile(UserProfile profile)
           
 UserProfile RDBMUserLayoutStore.addUserProfile(IPerson person, UserProfile profile)
          Add a user profile
 Document RDBMUserLayoutStore.getUserLayout(IPerson person, UserProfile profile)
           
 UserPreferences RDBMUserLayoutStore.getUserPreferences(IPerson person, UserProfile profile)
           
 void RDBMUserLayoutStore.setUserLayout(IPerson person, UserProfile profile, Document layoutXML, boolean channelsAdded)
          Save the user layout.
 void RDBMUserLayoutStore.updateSystemProfile(UserProfile profile)
           
 void RDBMUserLayoutStore.updateUserProfile(IPerson person, UserProfile profile)
           
 

Constructors in org.jasig.portal.layout.simple with parameters of type UserProfile
SimpleUserLayoutManager(IPerson owner, UserProfile profile, IUserLayoutStore store)
           
 

Uses of UserProfile in org.jasig.portal.services.stats
 

Methods in org.jasig.portal.services.stats with parameters of type UserProfile
 void ConditionalStatsRecorder.recordChannelAddedToLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelAddedToLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being added to a user layout
 void ConditionalStatsRecorder.recordChannelInstantiated(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelInstantiated(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being instantiated
 void ConditionalStatsRecorder.recordChannelMovedInLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelMovedInLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being moved in a user layout
 void ConditionalStatsRecorder.recordChannelRemovedFromLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelRemovedFromLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being removed from a user layout
 void ConditionalStatsRecorder.recordChannelRendered(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelRendered(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being rendered
 void ConditionalStatsRecorder.recordChannelTargeted(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelTargeted(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being targeted
 void ConditionalStatsRecorder.recordChannelUpdatedInLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
           
 void IStatsRecorder.recordChannelUpdatedInLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being updated in a user layout
 void ConditionalStatsRecorder.recordFolderAddedToLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
           
 void IStatsRecorder.recordFolderAddedToLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being added to a user layout
 void ConditionalStatsRecorder.recordFolderMovedInLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
           
 void IStatsRecorder.recordFolderMovedInLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being moved in a user layout
 void ConditionalStatsRecorder.recordFolderRemovedFromLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
           
 void IStatsRecorder.recordFolderRemovedFromLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being removed from a user layout
 void ConditionalStatsRecorder.recordFolderUpdatedInLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
           
 void IStatsRecorder.recordFolderUpdatedInLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being updated in a user layout
 

Constructors in org.jasig.portal.services.stats with parameters of type UserProfile
StatsRecorderLayoutEventListener(IPerson person, UserProfile profile)
          Constructor for StatsRecorderLayoutEventListener.
 



Copyright © 2010 Jasig. All Rights Reserved.