001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
033 public class CMISRepositoryLocalServiceUtil {
034
039
040
045 public static java.lang.String getBeanIdentifier() {
046 return getService().getBeanIdentifier();
047 }
048
049
054 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
055 getService().setBeanIdentifier(beanIdentifier);
056 }
057
058 public static java.lang.Object getSession(long repositoryId)
059 throws com.liferay.portal.kernel.exception.PortalException,
060 com.liferay.portal.kernel.exception.SystemException {
061 return getService().getSession(repositoryId);
062 }
063
064 public static com.liferay.portal.kernel.repository.model.FileEntry toFileEntry(
065 long repositoryId, java.lang.Object object)
066 throws com.liferay.portal.kernel.exception.PortalException,
067 com.liferay.portal.kernel.exception.SystemException {
068 return getService().toFileEntry(repositoryId, object);
069 }
070
071 public static com.liferay.portal.kernel.repository.model.FileVersion toFileVersion(
072 long repositoryId, java.lang.Object object)
073 throws com.liferay.portal.kernel.exception.PortalException,
074 com.liferay.portal.kernel.exception.SystemException {
075 return getService().toFileVersion(repositoryId, object);
076 }
077
078 public static com.liferay.portal.kernel.repository.model.Folder toFolder(
079 long repositoryId, java.lang.Object object)
080 throws com.liferay.portal.kernel.exception.PortalException,
081 com.liferay.portal.kernel.exception.SystemException {
082 return getService().toFolder(repositoryId, object);
083 }
084
085 public static CMISRepositoryLocalService getService() {
086 if (_service == null) {
087 _service = (CMISRepositoryLocalService)PortalBeanLocatorUtil.locate(CMISRepositoryLocalService.class.getName());
088
089 ReferenceRegistry.registerReference(CMISRepositoryLocalServiceUtil.class,
090 "_service");
091 }
092
093 return _service;
094 }
095
096
099 public void setService(CMISRepositoryLocalService service) {
100 }
101
102 private static CMISRepositoryLocalService _service;
103 }