001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/alias/tags/sakai_2-4-1/alias-impl/impl/src/java/org/sakaiproject/alias/impl/AliasServiceTest.java $
003: * $Id: AliasServiceTest.java 7515 2006-04-09 13:01:08Z 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.alias.impl;
021:
022: import org.sakaiproject.authz.api.FunctionManager;
023: import org.sakaiproject.authz.api.SecurityService;
024: import org.sakaiproject.component.api.ServerConfigurationService;
025: import org.sakaiproject.db.api.SqlService;
026: import org.sakaiproject.entity.api.EntityManager;
027: import org.sakaiproject.event.api.EventTrackingService;
028: import org.sakaiproject.memory.api.MemoryService;
029: import org.sakaiproject.site.api.SiteService;
030: import org.sakaiproject.time.api.TimeService;
031: import org.sakaiproject.user.api.UserDirectoryService;
032: import org.sakaiproject.tool.api.SessionManager;
033:
034: /**
035: * <p>
036: * AliasServiceTest extends the db alias service providing the dependency injectors for testing.
037: * </p>
038: */
039: public class AliasServiceTest extends DbAliasService {
040: /**
041: * @return the MemoryService collaborator.
042: */
043: protected MemoryService memoryService() {
044: return null;
045: }
046:
047: /**
048: * @return the ServerConfigurationService collaborator.
049: */
050: protected ServerConfigurationService serverConfigurationService() {
051: return null;
052: }
053:
054: /**
055: * @return the EntityManager collaborator.
056: */
057: protected EntityManager entityManager() {
058: return null;
059: }
060:
061: /**
062: * @return the SecurityService collaborator.
063: */
064: protected SecurityService securityService() {
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 SiteService collaborator.
077: */
078: protected SiteService siteService() {
079: return null;
080: }
081:
082: /**
083: * @return the TimeService collaborator.
084: */
085: protected TimeService timeService() {
086: return null;
087: }
088:
089: /**
090: * @return the FunctionManager collaborator.
091: */
092: protected FunctionManager functionManager() {
093: return null;
094: }
095:
096: /**
097: * @return the EventTrackingService collaborator.
098: */
099: protected EventTrackingService eventTrackingService() {
100: return null;
101: }
102:
103: /**
104: * @return the UserDirectoryService collaborator.
105: */
106: protected UserDirectoryService userDirectoryService() {
107: return null;
108: }
109:
110: /**
111: * @return the MemoryService collaborator.
112: */
113: protected SqlService sqlService() {
114: return null;
115: }
116: }
|