01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/event/tags/sakai_2-4-1/event-impl/impl/src/java/org/sakaiproject/event/impl/EventTrackingTest.java $
03: * $Id: EventTrackingTest.java 7520 2006-04-09 13:02:09Z ggolden@umich.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.event.impl;
21:
22: import org.sakaiproject.component.api.ServerConfigurationService;
23: import org.sakaiproject.db.api.SqlService;
24: import org.sakaiproject.event.api.UsageSessionService;
25: import org.sakaiproject.time.api.TimeService;
26: import org.sakaiproject.tool.api.SessionManager;
27:
28: /**
29: * <p>
30: * EventTrackingTest extends the cluster event tracking service providing the dependency injectors for testing.
31: * </p>
32: */
33: public class EventTrackingTest extends ClusterEventTracking {
34: /**
35: * @return the UsageSessionService collaborator.
36: */
37: protected UsageSessionService usageSessionService() {
38: return null;
39: }
40:
41: /**
42: * @return the SessionManager collaborator.
43: */
44: protected SessionManager sessionManager() {
45: return null;
46: }
47:
48: /**
49: * @return the MemoryService collaborator.
50: */
51: protected SqlService sqlService() {
52: return null;
53: }
54:
55: /**
56: * @return the ServerConfigurationService collaborator.
57: */
58: protected ServerConfigurationService serverConfigurationService() {
59: return null;
60: }
61:
62: /**
63: * @return the TimeService collaborator.
64: */
65: protected TimeService timeService() {
66: return null;
67: }
68: }
|