001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
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    /**
021     * Provides the remote service utility for Website. This utility wraps
022     * {@link com.liferay.portal.service.impl.WebsiteServiceImpl} and is the
023     * primary access point for service operations in application layer code running
024     * on a remote server. Methods of this service are expected to have security
025     * checks based on the propagated JAAS credentials because this service can be
026     * accessed remotely.
027     *
028     * @author Brian Wing Shun Chan
029     * @see WebsiteService
030     * @see com.liferay.portal.service.base.WebsiteServiceBaseImpl
031     * @see com.liferay.portal.service.impl.WebsiteServiceImpl
032     * @generated
033     */
034    public class WebsiteServiceUtil {
035            /*
036             * NOTE FOR DEVELOPERS:
037             *
038             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.WebsiteServiceImpl} and rerun ServiceBuilder to regenerate this class.
039             */
040    
041            /**
042            * Returns the Spring bean ID for this bean.
043            *
044            * @return the Spring bean ID for this bean
045            */
046            public static java.lang.String getBeanIdentifier() {
047                    return getService().getBeanIdentifier();
048            }
049    
050            /**
051            * Sets the Spring bean ID for this bean.
052            *
053            * @param beanIdentifier the Spring bean ID for this bean
054            */
055            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
056                    getService().setBeanIdentifier(beanIdentifier);
057            }
058    
059            /**
060            * @deprecated As of 6.2.0, replaced by {@link #addWebsite( String, long,
061            String, int, boolean, ServiceContext)}
062            */
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            /**
120             * @deprecated As of 6.2.0
121             */
122            public void setService(WebsiteService service) {
123            }
124    
125            private static WebsiteService _service;
126    }