001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/user/tags/sakai_2-4-1/user-impl/impl/src/java/org/sakaiproject/user/impl/PreferencesServiceTest.java $
003: * $Id: PreferencesServiceTest.java 7518 2006-04-09 13:01:38Z 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.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.user.api.UserDirectoryService;
030: import org.sakaiproject.tool.api.SessionManager;
031:
032: /**
033: * <p>
034: * PreferencesServiceTest extends the db preferences service providing the dependency injectors for testing.
035: * </p>
036: */
037: public class PreferencesServiceTest extends DbPreferencesService {
038: /**
039: * @return the MemoryService collaborator.
040: */
041: protected SqlService sqlService() {
042: return null;
043: }
044:
045: /**
046: * @return the MemoryService collaborator.
047: */
048: protected MemoryService memoryService() {
049: return null;
050: }
051:
052: /**
053: * @return the ServerConfigurationService collaborator.
054: */
055: protected ServerConfigurationService serverConfigurationService() {
056: return null;
057: }
058:
059: /**
060: * @return the EntityManager collaborator.
061: */
062: protected EntityManager entityManager() {
063: return null;
064: }
065:
066: /**
067: * @return the SecurityService collaborator.
068: */
069: protected SecurityService securityService() {
070: return null;
071: }
072:
073: /**
074: * @return the FunctionManager collaborator.
075: */
076: protected FunctionManager functionManager() {
077: return null;
078: }
079:
080: /**
081: * @return the SessionManager collaborator.
082: */
083: protected SessionManager sessionManager() {
084: return null;
085: }
086:
087: /**
088: * @return the EventTrackingService collaborator.
089: */
090: protected EventTrackingService eventTrackingService() {
091: return null;
092: }
093:
094: /**
095: * @return the UserDirectoryService collaborator.
096: */
097: protected UserDirectoryService userDirectoryService() {
098: return null;
099: }
100: }
|