01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/event/tags/sakai_2-4-1/event-impl/impl/src/java/org/sakaiproject/event/impl/NotificationServiceTest.java $
03: * $Id: NotificationServiceTest.java 7319 2006-04-01 20:02:05Z 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.EventTrackingService;
25: import org.sakaiproject.id.api.IdManager;
26:
27: /**
28: * <p>
29: * NotificationServiceTest extends the db alias service providing the dependency injectors for testing.
30: * </p>
31: */
32: public class NotificationServiceTest extends DbNotificationService {
33: /**
34: * @return the EventTrackingService collaborator.
35: */
36: protected EventTrackingService eventTrackingService() {
37: return null;
38: }
39:
40: /**
41: * @return the ServerConfigurationService collaborator.
42: */
43: protected ServerConfigurationService serverConfigurationService() {
44: return null;
45: }
46:
47: /**
48: * @return the IdManager collaborator.
49: */
50: protected IdManager idManager() {
51: return null;
52: }
53:
54: /**
55: * @return the MemoryService collaborator.
56: */
57: protected SqlService sqlService() {
58: return null;
59: }
60: }
|