/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library 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 2.1 of the License, or (at your option) * any later version. * * This library 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. */ package com.liferay.portal.kernel.service; import aQute.bnd.annotation.ProviderType; /** * Provides a wrapper for {@link CompanyService}. * * @author Brian Wing Shun Chan * @see CompanyService * @generated */ @ProviderType public class CompanyServiceWrapper implements CompanyService, ServiceWrapper<CompanyService> { public CompanyServiceWrapper(CompanyService companyService) { _companyService = companyService; } /** * Adds a company. * * @param webId the company's web domain * @param virtualHost the company's virtual host name * @param mx the company's mail domain * @param system whether the company is the very first company (i.e., the * @param maxUsers the max number of company users (optionally <code>0</code>) * @param active whether the company is active * @return the company */ @Override public com.liferay.portal.kernel.model.Company addCompany( java.lang.String webId, java.lang.String virtualHost, java.lang.String mx, boolean system, int maxUsers, boolean active) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.addCompany(webId, virtualHost, mx, system, maxUsers, active); } @Override public com.liferay.portal.kernel.model.Company deleteCompany(long companyId) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.deleteCompany(companyId); } /** * Returns the company with the primary key. * * @param companyId the primary key of the company * @return Returns the company with the primary key */ @Override public com.liferay.portal.kernel.model.Company getCompanyById( long companyId) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.getCompanyById(companyId); } /** * Returns the company with the logo. * * @param logoId the ID of the company's logo * @return Returns the company with the logo */ @Override public com.liferay.portal.kernel.model.Company getCompanyByLogoId( long logoId) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.getCompanyByLogoId(logoId); } /** * Returns the company with the mail domian. * * @param mx the company's mail domain * @return Returns the company with the mail domain */ @Override public com.liferay.portal.kernel.model.Company getCompanyByMx( java.lang.String mx) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.getCompanyByMx(mx); } /** * Returns the company with the virtual host name. * * @param virtualHost the company's virtual host name * @return Returns the company with the virtual host name */ @Override public com.liferay.portal.kernel.model.Company getCompanyByVirtualHost( java.lang.String virtualHost) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.getCompanyByVirtualHost(virtualHost); } /** * Returns the company with the web domain. * * @param webId the company's web domain * @return Returns the company with the web domain */ @Override public com.liferay.portal.kernel.model.Company getCompanyByWebId( java.lang.String webId) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.getCompanyByWebId(webId); } /** * Updates the company * * @param companyId the primary key of the company * @param virtualHost the company's virtual host name * @param mx the company's mail domain * @param maxUsers the max number of company users (optionally <code>0</code>) * @param active whether the company is active * @return the company with the primary key */ @Override public com.liferay.portal.kernel.model.Company updateCompany( long companyId, java.lang.String virtualHost, java.lang.String mx, int maxUsers, boolean active) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateCompany(companyId, virtualHost, mx, maxUsers, active); } /** * Updates the company with additional account information. * * @param companyId the primary key of the company * @param virtualHost the company's virtual host name * @param mx the company's mail domain * @param homeURL the company's home URL (optionally <code>null</code>) * @param logo whether to update the company's logo * @param logoBytes the new logo image data * @param name the company's account name (optionally <code>null</code>) * @param legalName the company's account legal name (optionally <code>null</code>) * @param legalId the company's account legal ID (optionally <code>null</code>) * @param legalType the company's account legal type (optionally <code>null</code>) * @param sicCode the company's account SIC code (optionally <code>null</code>) * @param tickerSymbol the company's account ticker symbol (optionally <code>null</code>) * @param industry the the company's account industry (optionally <code>null</code>) * @param type the company's account type (optionally <code>null</code>) * @param size the company's account size (optionally <code>null</code>) * @return the the company with the primary key */ @Override public com.liferay.portal.kernel.model.Company updateCompany( long companyId, java.lang.String virtualHost, java.lang.String mx, java.lang.String homeURL, boolean logo, byte[] logoBytes, java.lang.String name, java.lang.String legalName, java.lang.String legalId, java.lang.String legalType, java.lang.String sicCode, java.lang.String tickerSymbol, java.lang.String industry, java.lang.String type, java.lang.String size) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateCompany(companyId, virtualHost, mx, homeURL, logo, logoBytes, name, legalName, legalId, legalType, sicCode, tickerSymbol, industry, type, size); } /** * Updates the company with addition information. * * @param companyId the primary key of the company * @param virtualHost the company's virtual host name * @param mx the company's mail domain * @param homeURL the company's home URL (optionally <code>null</code>) * @param logo if the company has a custom logo * @param logoBytes the new logo image data * @param name the company's account name (optionally <code>null</code>) * @param legalName the company's account legal name (optionally <code>null</code>) * @param legalId the company's accout legal ID (optionally <code>null</code>) * @param legalType the company's account legal type (optionally <code>null</code>) * @param sicCode the company's account SIC code (optionally <code>null</code>) * @param tickerSymbol the company's account ticker symbol (optionally <code>null</code>) * @param industry the the company's account industry (optionally <code>null</code>) * @param type the company's account type (optionally <code>null</code>) * @param size the company's account size (optionally <code>null</code>) * @param languageId the ID of the company's default user's language * @param timeZoneId the ID of the company's default user's time zone * @param addresses the company's addresses * @param emailAddresses the company's email addresses * @param phones the company's phone numbers * @param websites the company's websites * @param properties the company's properties * @return the company with the primary key */ @Override public com.liferay.portal.kernel.model.Company updateCompany( long companyId, java.lang.String virtualHost, java.lang.String mx, java.lang.String homeURL, boolean logo, byte[] logoBytes, java.lang.String name, java.lang.String legalName, java.lang.String legalId, java.lang.String legalType, java.lang.String sicCode, java.lang.String tickerSymbol, java.lang.String industry, java.lang.String type, java.lang.String size, java.lang.String languageId, java.lang.String timeZoneId, java.util.List<com.liferay.portal.kernel.model.Address> addresses, java.util.List<com.liferay.portal.kernel.model.EmailAddress> emailAddresses, java.util.List<com.liferay.portal.kernel.model.Phone> phones, java.util.List<com.liferay.portal.kernel.model.Website> websites, com.liferay.portal.kernel.util.UnicodeProperties properties) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateCompany(companyId, virtualHost, mx, homeURL, logo, logoBytes, name, legalName, legalId, legalType, sicCode, tickerSymbol, industry, type, size, languageId, timeZoneId, addresses, emailAddresses, phones, websites, properties); } /** * Updates the company with additional account information. * * @param companyId the primary key of the company * @param virtualHost the company's virtual host name * @param mx the company's mail domain * @param homeURL the company's home URL (optionally <code>null</code>) * @param name the company's account name (optionally <code>null</code>) * @param legalName the company's account legal name (optionally <code>null</code>) * @param legalId the company's account legal ID (optionally <code>null</code>) * @param legalType the company's account legal type (optionally <code>null</code>) * @param sicCode the company's account SIC code (optionally <code>null</code>) * @param tickerSymbol the company's account ticker symbol (optionally <code>null</code>) * @param industry the the company's account industry (optionally <code>null</code>) * @param type the company's account type (optionally <code>null</code>) * @param size the company's account size (optionally <code>null</code>) * @return the the company with the primary key * @deprecated As of 7.0.0, replaced by {@link #updateCompany(long, String, String, String, boolean, byte[], String, String, String, String, String, String, String, String, String)} */ @Deprecated @Override public com.liferay.portal.kernel.model.Company updateCompany( long companyId, java.lang.String virtualHost, java.lang.String mx, java.lang.String homeURL, java.lang.String name, java.lang.String legalName, java.lang.String legalId, java.lang.String legalType, java.lang.String sicCode, java.lang.String tickerSymbol, java.lang.String industry, java.lang.String type, java.lang.String size) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateCompany(companyId, virtualHost, mx, homeURL, name, legalName, legalId, legalType, sicCode, tickerSymbol, industry, type, size); } /** * Updates the company with addition information. * * @param companyId the primary key of the company * @param virtualHost the company's virtual host name * @param mx the company's mail domain * @param homeURL the company's home URL (optionally <code>null</code>) * @param name the company's account name (optionally <code>null</code>) * @param legalName the company's account legal name (optionally <code>null</code>) * @param legalId the company's accout legal ID (optionally <code>null</code>) * @param legalType the company's account legal type (optionally <code>null</code>) * @param sicCode the company's account SIC code (optionally <code>null</code>) * @param tickerSymbol the company's account ticker symbol (optionally <code>null</code>) * @param industry the the company's account industry (optionally <code>null</code>) * @param type the company's account type (optionally <code>null</code>) * @param size the company's account size (optionally <code>null</code>) * @param languageId the ID of the company's default user's language * @param timeZoneId the ID of the company's default user's time zone * @param addresses the company's addresses * @param emailAddresses the company's email addresses * @param phones the company's phone numbers * @param websites the company's websites * @param properties the company's properties * @return the company with the primary key * @deprecated As of 7.0.0, replaced by {@link #updateCompany(long, String, String, String, boolean, byte[], String, String, String, String, String, String, String, String, String, String, String, List, List, List, List, UnicodeProperties)} */ @Deprecated @Override public com.liferay.portal.kernel.model.Company updateCompany( long companyId, java.lang.String virtualHost, java.lang.String mx, java.lang.String homeURL, java.lang.String name, java.lang.String legalName, java.lang.String legalId, java.lang.String legalType, java.lang.String sicCode, java.lang.String tickerSymbol, java.lang.String industry, java.lang.String type, java.lang.String size, java.lang.String languageId, java.lang.String timeZoneId, java.util.List<com.liferay.portal.kernel.model.Address> addresses, java.util.List<com.liferay.portal.kernel.model.EmailAddress> emailAddresses, java.util.List<com.liferay.portal.kernel.model.Phone> phones, java.util.List<com.liferay.portal.kernel.model.Website> websites, com.liferay.portal.kernel.util.UnicodeProperties properties) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateCompany(companyId, virtualHost, mx, homeURL, name, legalName, legalId, legalType, sicCode, tickerSymbol, industry, type, size, languageId, timeZoneId, addresses, emailAddresses, phones, websites, properties); } /** * Updates the company's logo. * * @param companyId the primary key of the company * @param bytes the bytes of the company's logo image * @return the company with the primary key */ @Override public com.liferay.portal.kernel.model.Company updateLogo(long companyId, byte[] bytes) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateLogo(companyId, bytes); } /** * Updates the company's logo. * * @param companyId the primary key of the company * @param inputStream the input stream of the company's logo image * @return the company with the primary key */ @Override public com.liferay.portal.kernel.model.Company updateLogo(long companyId, java.io.InputStream inputStream) throws com.liferay.portal.kernel.exception.PortalException { return _companyService.updateLogo(companyId, inputStream); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ @Override public java.lang.String getOSGiServiceIdentifier() { return _companyService.getOSGiServiceIdentifier(); } /** * Deletes the company's logo. * * @param companyId the primary key of the company */ @Override public void deleteLogo(long companyId) throws com.liferay.portal.kernel.exception.PortalException { _companyService.deleteLogo(companyId); } /** * Removes the values that match the keys of the company's preferences. * * This method is called by {@link * com.liferay.portlet.portalsettings.action.EditLDAPServerAction} remotely * through {@link CompanyService}. * * @param companyId the primary key of the company * @param keys the company's preferences keys to be remove */ @Override public void removePreferences(long companyId, java.lang.String[] keys) throws com.liferay.portal.kernel.exception.PortalException { _companyService.removePreferences(companyId, keys); } /** * Update the company's display. * * @param companyId the primary key of the company * @param languageId the ID of the company's default user's language * @param timeZoneId the ID of the company's default user's time zone */ @Override public void updateDisplay(long companyId, java.lang.String languageId, java.lang.String timeZoneId) throws com.liferay.portal.kernel.exception.PortalException { _companyService.updateDisplay(companyId, languageId, timeZoneId); } /** * Updates the company's preferences. The company's default properties are * found in portal.properties. * * @param companyId the primary key of the company * @param properties the company's properties. See {@link UnicodeProperties} */ @Override public void updatePreferences(long companyId, com.liferay.portal.kernel.util.UnicodeProperties properties) throws com.liferay.portal.kernel.exception.PortalException { _companyService.updatePreferences(companyId, properties); } /** * Updates the company's security properties. * * @param companyId the primary key of the company * @param authType the company's method of authenticating users * @param autoLogin whether to allow users to select the "remember me" feature * @param sendPassword whether to allow users to ask the company to send their passwords * @param strangers whether to allow strangers to create accounts to register themselves in the company * @param strangersWithMx whether to allow strangers to create accounts with email addresses that match the company mail suffix * @param strangersVerify whether to require strangers who create accounts to be verified via email * @param siteLogo whether to to allow site administrators to use their own logo instead of the enterprise logo */ @Override public void updateSecurity(long companyId, java.lang.String authType, boolean autoLogin, boolean sendPassword, boolean strangers, boolean strangersWithMx, boolean strangersVerify, boolean siteLogo) throws com.liferay.portal.kernel.exception.PortalException { _companyService.updateSecurity(companyId, authType, autoLogin, sendPassword, strangers, strangersWithMx, strangersVerify, siteLogo); } @Override public CompanyService getWrappedService() { return _companyService; } @Override public void setWrappedService(CompanyService companyService) { _companyService = companyService; } private CompanyService _companyService; }