01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/email/tags/sakai_2-4-1/email-impl/impl/src/java/org/sakaiproject/email/impl/DigestServiceTest.java $
03: * $Id: DigestServiceTest.java 7516 2006-04-09 13:01:18Z 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.email.impl;
21:
22: import org.sakaiproject.authz.api.SecurityService;
23: import org.sakaiproject.component.api.ServerConfigurationService;
24: import org.sakaiproject.db.api.SqlService;
25: import org.sakaiproject.email.api.EmailService;
26: import org.sakaiproject.event.api.EventTrackingService;
27: import org.sakaiproject.time.api.TimeService;
28: import org.sakaiproject.user.api.UserDirectoryService;
29: import org.sakaiproject.tool.api.SessionManager;
30:
31: /**
32: * <p>
33: * DigestServiceTest extends the db digest service providing the dependency injectors for testing.
34: * </p>
35: */
36: public class DigestServiceTest extends DbDigestService {
37: /**
38: * @return the MemoryService collaborator.
39: */
40: protected SqlService sqlService() {
41: return null;
42: }
43:
44: /**
45: * @return the TimeService collaborator.
46: */
47: protected TimeService timeService() {
48: return null;
49: }
50:
51: /**
52: * @return the ServerConfigurationService collaborator.
53: */
54: protected ServerConfigurationService serverConfigurationService() {
55: return null;
56: }
57:
58: /**
59: * @return the EmailService collaborator.
60: */
61: protected EmailService emailService() {
62: return null;
63: }
64:
65: /**
66: * @return the EventTrackingService collaborator.
67: */
68: protected EventTrackingService eventTrackingService() {
69: return null;
70: }
71:
72: /**
73: * @return the MemoryServiSecurityServicece collaborator.
74: */
75: protected SecurityService securityService() {
76: return null;
77: }
78:
79: /**
80: * @return the UserDirectoryService collaborator.
81: */
82: protected UserDirectoryService userDirectoryService() {
83: return null;
84: }
85:
86: /**
87: * @return the SessionManager collaborator.
88: */
89: protected SessionManager sessionManager() {
90: return null;
91: }
92: }
|