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
034 public class WebsiteServiceUtil {
035
040
041
046 public static java.lang.String getBeanIdentifier() {
047 return getService().getBeanIdentifier();
048 }
049
050
055 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
056 getService().setBeanIdentifier(beanIdentifier);
057 }
058
059
063 public static com.liferay.portal.model.Website addWebsite(
064 java.lang.String className, long classPK, java.lang.String url,
065 int typeId, boolean primary)
066 throws com.liferay.portal.kernel.exception.PortalException,
067 com.liferay.portal.kernel.exception.SystemException {
068 return getService().addWebsite(className, classPK, url, typeId, primary);
069 }
070
071 public static com.liferay.portal.model.Website addWebsite(
072 java.lang.String className, long classPK, java.lang.String url,
073 int typeId, boolean primary,
074 com.liferay.portal.service.ServiceContext serviceContext)
075 throws com.liferay.portal.kernel.exception.PortalException,
076 com.liferay.portal.kernel.exception.SystemException {
077 return getService()
078 .addWebsite(className, classPK, url, typeId, primary,
079 serviceContext);
080 }
081
082 public static void deleteWebsite(long websiteId)
083 throws com.liferay.portal.kernel.exception.PortalException,
084 com.liferay.portal.kernel.exception.SystemException {
085 getService().deleteWebsite(websiteId);
086 }
087
088 public static com.liferay.portal.model.Website getWebsite(long websiteId)
089 throws com.liferay.portal.kernel.exception.PortalException,
090 com.liferay.portal.kernel.exception.SystemException {
091 return getService().getWebsite(websiteId);
092 }
093
094 public static java.util.List<com.liferay.portal.model.Website> getWebsites(
095 java.lang.String className, long classPK)
096 throws com.liferay.portal.kernel.exception.PortalException,
097 com.liferay.portal.kernel.exception.SystemException {
098 return getService().getWebsites(className, classPK);
099 }
100
101 public static com.liferay.portal.model.Website updateWebsite(
102 long websiteId, java.lang.String url, int typeId, boolean primary)
103 throws com.liferay.portal.kernel.exception.PortalException,
104 com.liferay.portal.kernel.exception.SystemException {
105 return getService().updateWebsite(websiteId, url, typeId, primary);
106 }
107
108 public static WebsiteService getService() {
109 if (_service == null) {
110 _service = (WebsiteService)PortalBeanLocatorUtil.locate(WebsiteService.class.getName());
111
112 ReferenceRegistry.registerReference(WebsiteServiceUtil.class,
113 "_service");
114 }
115
116 return _service;
117 }
118
119
122 public void setService(WebsiteService service) {
123 }
124
125 private static WebsiteService _service;
126 }