001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/user/tags/sakai_2-4-1/user-impl/impl/src/java/org/sakaiproject/user/impl/UserServiceTest.java $
003: * $Id: UserServiceTest.java 9195 2006-05-09 19:52:44Z 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.user.impl;
021:
022: import org.sakaiproject.authz.api.AuthzGroupService;
023: import org.sakaiproject.authz.api.FunctionManager;
024: import org.sakaiproject.authz.api.SecurityService;
025: import org.sakaiproject.component.api.ServerConfigurationService;
026: import org.sakaiproject.db.api.SqlService;
027: import org.sakaiproject.entity.api.EntityManager;
028: import org.sakaiproject.event.api.EventTrackingService;
029: import org.sakaiproject.id.api.IdManager;
030: import org.sakaiproject.memory.api.MemoryService;
031: import org.sakaiproject.thread_local.api.ThreadLocalManager;
032: import org.sakaiproject.time.api.TimeService;
033: import org.sakaiproject.tool.api.SessionManager;
034:
035: /**
036: * <p>
037: * UserServiceTest extends the db user service providing the dependency injectors for testing.
038: * </p>
039: */
040: public class UserServiceTest extends DbUserService {
041: /**
042: * @return the MemoryService collaborator.
043: */
044: protected SqlService sqlService() {
045: return null;
046: }
047:
048: /**
049: * @return the ServerConfigurationService collaborator.
050: */
051: protected ServerConfigurationService serverConfigurationService() {
052: return null;
053: }
054:
055: /**
056: * @return the EntityManager collaborator.
057: */
058: protected EntityManager entityManager() {
059: return null;
060: }
061:
062: /**
063: * @return the SecurityService collaborator.
064: */
065: protected SecurityService securityService() {
066: return null;
067: }
068:
069: /**
070: * @return the FunctionManager collaborator.
071: */
072: protected FunctionManager functionManager() {
073: return null;
074: }
075:
076: /**
077: * @return the SessionManager collaborator.
078: */
079: protected SessionManager sessionManager() {
080: return null;
081: }
082:
083: /**
084: * @return the MemoryService collaborator.
085: */
086: protected MemoryService memoryService() {
087: return null;
088: }
089:
090: /**
091: * @return the EventTrackingService collaborator.
092: */
093: protected EventTrackingService eventTrackingService() {
094: return null;
095: }
096:
097: /**
098: * @return the ThreadLocalManager collaborator.
099: */
100: protected ThreadLocalManager threadLocalManager() {
101: return null;
102: }
103:
104: /**
105: * @return the AuthzGroupService collaborator.
106: */
107: protected AuthzGroupService authzGroupService() {
108: return null;
109: }
110:
111: /**
112: * @return the TimeService collaborator.
113: */
114: protected TimeService timeService() {
115: return null;
116: }
117:
118: /**
119: * @return the IdManager collaborator.
120: */
121: protected IdManager idManager() {
122: return null;
123: }
124: }
|