mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
174 lines
4.4 KiB
Java
174 lines
4.4 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.repo.avm.util;
|
|
|
|
import org.alfresco.repo.avm.LookupCache;
|
|
import org.alfresco.repo.content.ContentStore;
|
|
import org.alfresco.repo.security.authentication.AuthenticationContext;
|
|
import org.alfresco.service.cmr.dictionary.DictionaryService;
|
|
import org.alfresco.service.cmr.repository.ContentService;
|
|
import org.alfresco.service.cmr.repository.MimetypeService;
|
|
import org.alfresco.service.cmr.security.AuthorityService;
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.ApplicationContextAware;
|
|
|
|
/**
|
|
* Simple access to Raw versions of service singletons.
|
|
* @author britt
|
|
*/
|
|
public class RawServices implements ApplicationContextAware
|
|
{
|
|
/**
|
|
* The instance of RawServices
|
|
*/
|
|
private static RawServices fgInstance;
|
|
|
|
/**
|
|
* The Application Context.
|
|
*/
|
|
private ApplicationContext fContext;
|
|
|
|
/**
|
|
* The AuthenticationContext.
|
|
*/
|
|
private AuthenticationContext fAuthenticationContext;
|
|
|
|
/**
|
|
* The Content Service.
|
|
*/
|
|
private ContentService fContentService;
|
|
|
|
/**
|
|
* The Mimetype Service.
|
|
*/
|
|
private MimetypeService fMimetypeService;
|
|
|
|
/**
|
|
* The Dictionary Service.
|
|
*/
|
|
private DictionaryService fDictionaryService;
|
|
|
|
/**
|
|
* The Content Store.
|
|
*/
|
|
private ContentStore fContentStore;
|
|
|
|
/**
|
|
* The LookupCache.
|
|
*/
|
|
private LookupCache fLookupCache;
|
|
|
|
/**
|
|
* The Authority Service.
|
|
*/
|
|
private AuthorityService fAuthorityService;
|
|
|
|
/**
|
|
* Default constructor.
|
|
*/
|
|
public RawServices()
|
|
{
|
|
fgInstance = this;
|
|
}
|
|
|
|
public static RawServices Instance()
|
|
{
|
|
return fgInstance;
|
|
}
|
|
|
|
public void setApplicationContext(ApplicationContext applicationContext)
|
|
{
|
|
fContext = applicationContext;
|
|
}
|
|
|
|
public AuthenticationContext getAuthenticationContext()
|
|
{
|
|
if (fAuthenticationContext == null)
|
|
{
|
|
fAuthenticationContext =
|
|
(AuthenticationContext)fContext.getBean("authenticationContext");
|
|
}
|
|
return fAuthenticationContext;
|
|
}
|
|
|
|
public ContentService getContentService()
|
|
{
|
|
if (fContentService == null)
|
|
{
|
|
fContentService =
|
|
(ContentService)fContext.getBean("contentService");
|
|
}
|
|
return fContentService;
|
|
}
|
|
|
|
public MimetypeService getMimetypeService()
|
|
{
|
|
if (fMimetypeService == null)
|
|
{
|
|
fMimetypeService =
|
|
(MimetypeService)fContext.getBean("mimetypeService");
|
|
}
|
|
return fMimetypeService;
|
|
}
|
|
|
|
public DictionaryService getDictionaryService()
|
|
{
|
|
if (fDictionaryService == null)
|
|
{
|
|
fDictionaryService =
|
|
(DictionaryService)fContext.getBean("dictionaryService");
|
|
}
|
|
return fDictionaryService;
|
|
}
|
|
|
|
public ContentStore getContentStore()
|
|
{
|
|
if (fContentStore == null)
|
|
{
|
|
fContentStore =
|
|
(ContentStore)fContext.getBean("fileContentStore");
|
|
}
|
|
return fContentStore;
|
|
}
|
|
|
|
public LookupCache getLookupCache()
|
|
{
|
|
if (fLookupCache == null)
|
|
{
|
|
fLookupCache = (LookupCache)fContext.getBean("lookupCache");
|
|
}
|
|
return fLookupCache;
|
|
}
|
|
|
|
public AuthorityService getAuthorityService()
|
|
{
|
|
if (fAuthorityService == null)
|
|
{
|
|
// TODO change this back to the unwrapped bean before production.
|
|
fAuthorityService = (AuthorityService)fContext.getBean("AuthorityService");
|
|
}
|
|
return fAuthorityService;
|
|
}
|
|
|
|
public ApplicationContext getContext()
|
|
{
|
|
return fContext;
|
|
}
|
|
}
|