001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/event/tags/sakai_2-4-1/event-impl/impl/src/java/org/sakaiproject/event/impl/SessionServiceAdaptorTest.java $
003: * $Id: SessionServiceAdaptorTest.java 7520 2006-04-09 13:02:09Z ggolden@umich.edu $
004: ***********************************************************************************
005: *
006: * Copyright (c) 2006 The Sakai Foundation.
007: *
008: * Licensed under the Educational Community License, Version 1.0 (the "License");
009: * you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at
011: *
012: * http://www.opensource.org/licenses/ecl1.php
013: *
014: * Unless required by applicable law or agreed to in writing, software
015: * distributed under the License is distributed on an "AS IS" BASIS,
016: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: * See the License for the specific language governing permissions and
018: * limitations under the License.
019: *
020: **********************************************************************************/package org.sakaiproject.event.impl;
021:
022: import org.sakaiproject.authz.api.AuthzGroupService;
023: import org.sakaiproject.component.api.ServerConfigurationService;
024: import org.sakaiproject.db.api.SqlService;
025: import org.sakaiproject.event.api.EventTrackingService;
026: import org.sakaiproject.id.api.IdManager;
027: import org.sakaiproject.thread_local.api.ThreadLocalManager;
028: import org.sakaiproject.time.api.TimeService;
029: import org.sakaiproject.user.api.UserDirectoryService;
030: import org.sakaiproject.tool.api.SessionManager;
031:
032: /**
033: * <p>
034: * SessionServiceAdaptorTest extends the db alias service providing the dependency injectors for testing. *
035: * </p>
036: */
037: public class SessionServiceAdaptorTest extends
038: UsageSessionServiceAdaptor {
039: /**
040: * @return the TimeService collaborator.
041: */
042: protected TimeService timeService() {
043: return null;
044: }
045:
046: /** Dependency: SqlService. */
047: /**
048: * @return the SqlService collaborator.
049: */
050: protected SqlService sqlService() {
051: return null;
052: }
053:
054: /**
055: * @return the ServerConfigurationService collaborator.
056: */
057: protected ServerConfigurationService serverConfigurationService() {
058: return null;
059: }
060:
061: /**
062: * @return the ThreadLocalManager collaborator.
063: */
064: protected ThreadLocalManager threadLocalManager() {
065: return null;
066: }
067:
068: /**
069: * @return the SessionManager collaborator.
070: */
071: protected SessionManager sessionManager() {
072: return null;
073: }
074:
075: /**
076: * @return the IdManager collaborator.
077: */
078: protected IdManager idManager() {
079: return null;
080: }
081:
082: /**
083: * @return the EventTrackingService collaborator.
084: */
085: protected EventTrackingService eventTrackingService() {
086: return null;
087: }
088:
089: /**
090: * @return the AuthzGroupService collaborator.
091: */
092: protected AuthzGroupService authzGroupService() {
093: return null;
094: }
095:
096: /**
097: * @return the UserDirectoryService collaborator.
098: */
099: protected UserDirectoryService userDirectoryService() {
100: return null;
101: }
102: }
|