uPortal 2.4.1
API Documentation

org.jasig.portal.services.stats
Class BaseStatsRecorder

java.lang.Object
  extended byorg.jasig.portal.services.stats.BaseStatsRecorder
All Implemented Interfaces:
IStatsRecorder
Direct Known Subclasses:
DoNothingStatsRecorder

public class BaseStatsRecorder
extends java.lang.Object
implements IStatsRecorder

This class can optionally be used as a base class for any custom stats recorders. It does absolutely nothing with the recorded statistics.

If you extend this class, you can override any of the IStatsRecorder methods that you are interested in and ignore the rest. Extending this class will also shield you from having to implement any newly added methods to IStatsRecorder in the future.

Version:
$Revision: 1.7 $
Author:
Ken Weiner, kweiner@unicon.net

Constructor Summary
BaseStatsRecorder()
           
 
Method Summary
 void recordChannelAddedToLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being added to a user layout
 void recordChannelDefinitionModified(IPerson person, ChannelDefinition channelDef)
          Called when a user modifies an existing channel
 void recordChannelDefinitionPublished(IPerson person, ChannelDefinition channelDef)
          Called when a user publishes a channel
 void recordChannelDefinitionRemoved(IPerson person, ChannelDefinition channelDef)
          Called when a user removes an existing channel
 void recordChannelInstantiated(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being instantiated
 void recordChannelMovedInLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being moved in a user layout
 void recordChannelRemovedFromLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being removed from a user layout
 void recordChannelRendered(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being rendered
 void recordChannelTargeted(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being targeted
 void recordChannelUpdatedInLayout(IPerson person, UserProfile profile, IUserLayoutChannelDescription channelDesc)
          Called when a channel is being updated in a user layout
 void recordFolderAddedToLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being added to a user layout
 void recordFolderMovedInLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being moved in a user layout
 void recordFolderRemovedFromLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being removed from a user layout
 void recordFolderUpdatedInLayout(IPerson person, UserProfile profile, IUserLayoutFolderDescription folderDesc)
          Called when a folder is being updated in a user layout
 void recordLogin(IPerson person)
          Called when user authenticates successfully.
 void recordLogout(IPerson person)
          Called when user logs out.
 void recordSessionCreated(IPerson person)
          Called when a new session is created for a user.
 void recordSessionDestroyed(IPerson person)
          Called when the user's session is destroyed.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BaseStatsRecorder

public BaseStatsRecorder()
Method Detail

recordLogin

public void recordLogin(IPerson person)
Description copied from interface: IStatsRecorder
Called when user authenticates successfully.

Specified by:
recordLogin in interface IStatsRecorder
Parameters:
person - the IPerson object

recordLogout

public void recordLogout(IPerson person)
Description copied from interface: IStatsRecorder
Called when user logs out.

Specified by:
recordLogout in interface IStatsRecorder
Parameters:
person - the IPerson object

recordSessionCreated

public void recordSessionCreated(IPerson person)
Description copied from interface: IStatsRecorder
Called when a new session is created for a user.

Specified by:
recordSessionCreated in interface IStatsRecorder
Parameters:
person - the IPerson object

recordSessionDestroyed

public void recordSessionDestroyed(IPerson person)
Description copied from interface: IStatsRecorder
Called when the user's session is destroyed. This occurs when the user logs out or his/her session simply times out.

Specified by:
recordSessionDestroyed in interface IStatsRecorder
Parameters:
person - the IPerson object

recordChannelDefinitionPublished

public void recordChannelDefinitionPublished(IPerson person,
                                             ChannelDefinition channelDef)
Description copied from interface: IStatsRecorder
Called when a user publishes a channel

Specified by:
recordChannelDefinitionPublished in interface IStatsRecorder
Parameters:
person - the person pubishing the channel
channelDef - the channel being published

recordChannelDefinitionModified

public void recordChannelDefinitionModified(IPerson person,
                                            ChannelDefinition channelDef)
Description copied from interface: IStatsRecorder
Called when a user modifies an existing channel

Specified by:
recordChannelDefinitionModified in interface IStatsRecorder
Parameters:
person - the person modifying the channel
channelDef - the channel being modified

recordChannelDefinitionRemoved

public void recordChannelDefinitionRemoved(IPerson person,
                                           ChannelDefinition channelDef)
Description copied from interface: IStatsRecorder
Called when a user removes an existing channel

Specified by:
recordChannelDefinitionRemoved in interface IStatsRecorder
Parameters:
person - the person removing the channel
channelDef - the channel being removed

recordChannelAddedToLayout

public void recordChannelAddedToLayout(IPerson person,
                                       UserProfile profile,
                                       IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being added to a user layout

Specified by:
recordChannelAddedToLayout in interface IStatsRecorder
Parameters:
person - the person adding the channel
profile - the profile of the layout to which the channel is added
channelDesc - the channel being subscribed to

recordChannelUpdatedInLayout

public void recordChannelUpdatedInLayout(IPerson person,
                                         UserProfile profile,
                                         IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being updated in a user layout

Specified by:
recordChannelUpdatedInLayout in interface IStatsRecorder
Parameters:
person - the person updating the channel
profile - the profile of the layout in which the channel is updated
channelDesc - the channel being updated

recordChannelMovedInLayout

public void recordChannelMovedInLayout(IPerson person,
                                       UserProfile profile,
                                       IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being moved in a user layout

Specified by:
recordChannelMovedInLayout in interface IStatsRecorder
Parameters:
person - the person moving the channel
profile - the profile of the layout in which the channel is moved
channelDesc - the channel being moved

recordChannelRemovedFromLayout

public void recordChannelRemovedFromLayout(IPerson person,
                                           UserProfile profile,
                                           IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being removed from a user layout

Specified by:
recordChannelRemovedFromLayout in interface IStatsRecorder
Parameters:
person - the person removing the channel
profile - the profile of the layout to which the channel is removed
channelDesc - the channel being removed from a user layout

recordFolderAddedToLayout

public void recordFolderAddedToLayout(IPerson person,
                                      UserProfile profile,
                                      IUserLayoutFolderDescription folderDesc)
Description copied from interface: IStatsRecorder
Called when a folder is being added to a user layout

Specified by:
recordFolderAddedToLayout in interface IStatsRecorder
Parameters:
person - the person adding the folder
profile - the profile of the layout to which the folder is added
folderDesc - the folder being subscribed to

recordFolderUpdatedInLayout

public void recordFolderUpdatedInLayout(IPerson person,
                                        UserProfile profile,
                                        IUserLayoutFolderDescription folderDesc)
Description copied from interface: IStatsRecorder
Called when a folder is being updated in a user layout

Specified by:
recordFolderUpdatedInLayout in interface IStatsRecorder
Parameters:
person - the person updating the folder
profile - the profile of the layout in which the folder is updated
folderDesc - the folder being updated

recordFolderMovedInLayout

public void recordFolderMovedInLayout(IPerson person,
                                      UserProfile profile,
                                      IUserLayoutFolderDescription folderDesc)
Description copied from interface: IStatsRecorder
Called when a folder is being moved in a user layout

Specified by:
recordFolderMovedInLayout in interface IStatsRecorder
Parameters:
person - the person moving the folder
profile - the profile of the layout in which the folder is moved
folderDesc - the folder being moved

recordFolderRemovedFromLayout

public void recordFolderRemovedFromLayout(IPerson person,
                                          UserProfile profile,
                                          IUserLayoutFolderDescription folderDesc)
Description copied from interface: IStatsRecorder
Called when a folder is being removed from a user layout

Specified by:
recordFolderRemovedFromLayout in interface IStatsRecorder
Parameters:
person - the person removing the folder
profile - the profile of the layout to which the folder is removed
folderDesc - the folder being removed from a user layout

recordChannelInstantiated

public void recordChannelInstantiated(IPerson person,
                                      UserProfile profile,
                                      IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being instantiated

Specified by:
recordChannelInstantiated in interface IStatsRecorder
Parameters:
person - the person instantiating the channel
profile - the profile of the layout in which this channel is instantiated
channelDesc - the channel being instantiated

recordChannelRendered

public void recordChannelRendered(IPerson person,
                                  UserProfile profile,
                                  IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being rendered

Specified by:
recordChannelRendered in interface IStatsRecorder
Parameters:
person - the person rendering the channel
profile - the profile of the layout in which this channel is rendered
channelDesc - the channel being rendered

recordChannelTargeted

public void recordChannelTargeted(IPerson person,
                                  UserProfile profile,
                                  IUserLayoutChannelDescription channelDesc)
Description copied from interface: IStatsRecorder
Called when a channel is being targeted

Specified by:
recordChannelTargeted in interface IStatsRecorder
Parameters:
person - the person interacting with the channel
profile - the profile of the layout in which this channel resides
channelDesc - the channel being targeted

uPortal 2.4.1
API Documentation