Source Code Cross Referenced for BaseStatsRecorder.java in  » Portal » uPortal_rel-2-6-1-GA » org » jasig » portal » services » stats » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » uPortal_rel 2 6 1 GA » org.jasig.portal.services.stats 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Copyright 2002 The JA-SIG Collaborative.  All rights reserved.
002:         *  See license distributed with this file and
003:         *  available online at http://www.uportal.org/license.html
004:         */
005:
006:        package org.jasig.portal.services.stats;
007:
008:        import org.apache.commons.logging.Log;
009:        import org.apache.commons.logging.LogFactory;
010:        import org.jasig.portal.ChannelDefinition;
011:        import org.jasig.portal.UserProfile;
012:        import org.jasig.portal.layout.node.IUserLayoutChannelDescription;
013:        import org.jasig.portal.layout.node.IUserLayoutFolderDescription;
014:        import org.jasig.portal.security.IPerson;
015:
016:        /**
017:         * <p>This class can optionally be used as a base class for
018:         * any custom stats recorders.  It does absolutely nothing 
019:         * with the recorded statistics.</p>  
020:         * <p>If you extend this class,
021:         * you can override any of the <code>IStatsRecorder</code> 
022:         * methods that you are interested in and ignore the rest.
023:         * Extending this class will also shield you from having to
024:         * implement any newly added methods to 
025:         * <code>IStatsRecorder</code> in the future.</p>
026:         * @author Ken Weiner, kweiner@unicon.net
027:         * @version $Revision: 36546 $
028:         * @deprecated IStatsRecorder implementation is replaced with a much more flexible system based on the Spring ApplicationEventPublisher 
029:         * and Event Listeners. For more information see:
030:         * http://www.ja-sig.org/wiki/display/UPC/Proposal+to+Deprecate+IStatsRecorder
031:         */
032:        public class BaseStatsRecorder implements  IStatsRecorder {
033:
034:            protected Log log = LogFactory.getLog(getClass());
035:
036:            public void recordLogin(IPerson person) {
037:            }
038:
039:            public void recordLogout(IPerson person) {
040:            }
041:
042:            public void recordSessionCreated(IPerson person) {
043:            }
044:
045:            public void recordSessionDestroyed(IPerson person) {
046:            }
047:
048:            public void recordChannelDefinitionPublished(IPerson person,
049:                    ChannelDefinition channelDef) {
050:            }
051:
052:            public void recordChannelDefinitionModified(IPerson person,
053:                    ChannelDefinition channelDef) {
054:            }
055:
056:            public void recordChannelDefinitionRemoved(IPerson person,
057:                    ChannelDefinition channelDef) {
058:            }
059:
060:            public void recordChannelAddedToLayout(IPerson person,
061:                    UserProfile profile,
062:                    IUserLayoutChannelDescription channelDesc) {
063:            }
064:
065:            public void recordChannelUpdatedInLayout(IPerson person,
066:                    UserProfile profile,
067:                    IUserLayoutChannelDescription channelDesc) {
068:            }
069:
070:            public void recordChannelMovedInLayout(IPerson person,
071:                    UserProfile profile,
072:                    IUserLayoutChannelDescription channelDesc) {
073:            }
074:
075:            public void recordChannelRemovedFromLayout(IPerson person,
076:                    UserProfile profile,
077:                    IUserLayoutChannelDescription channelDesc) {
078:            }
079:
080:            public void recordFolderAddedToLayout(IPerson person,
081:                    UserProfile profile, IUserLayoutFolderDescription folderDesc) {
082:            }
083:
084:            public void recordFolderUpdatedInLayout(IPerson person,
085:                    UserProfile profile, IUserLayoutFolderDescription folderDesc) {
086:            }
087:
088:            public void recordFolderMovedInLayout(IPerson person,
089:                    UserProfile profile, IUserLayoutFolderDescription folderDesc) {
090:            }
091:
092:            public void recordFolderRemovedFromLayout(IPerson person,
093:                    UserProfile profile, IUserLayoutFolderDescription folderDesc) {
094:            }
095:
096:            public void recordChannelInstantiated(IPerson person,
097:                    UserProfile profile,
098:                    IUserLayoutChannelDescription channelDesc) {
099:            }
100:
101:            public void recordChannelRendered(IPerson person,
102:                    UserProfile profile,
103:                    IUserLayoutChannelDescription channelDesc) {
104:            }
105:
106:            public void recordChannelTargeted(IPerson person,
107:                    UserProfile profile,
108:                    IUserLayoutChannelDescription channelDesc) {
109:            }
110:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.