001    /**
002     * Copyright (c) 2000-present 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.kernel.service;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.exception.PortalException;
020    import com.liferay.portal.kernel.exception.SystemException;
021    import com.liferay.portal.kernel.jsonwebservice.JSONWebService;
022    import com.liferay.portal.kernel.model.EmailAddress;
023    import com.liferay.portal.kernel.security.access.control.AccessControlled;
024    import com.liferay.portal.kernel.transaction.Isolation;
025    import com.liferay.portal.kernel.transaction.Propagation;
026    import com.liferay.portal.kernel.transaction.Transactional;
027    
028    import java.util.List;
029    
030    /**
031     * Provides the remote service interface for EmailAddress. Methods of this
032     * service are expected to have security checks based on the propagated JAAS
033     * credentials because this service can be accessed remotely.
034     *
035     * @author Brian Wing Shun Chan
036     * @see EmailAddressServiceUtil
037     * @see com.liferay.portal.service.base.EmailAddressServiceBaseImpl
038     * @see com.liferay.portal.service.impl.EmailAddressServiceImpl
039     * @generated
040     */
041    @AccessControlled
042    @JSONWebService
043    @ProviderType
044    @Transactional(isolation = Isolation.PORTAL, rollbackFor =  {
045            PortalException.class, SystemException.class})
046    public interface EmailAddressService extends BaseService {
047            /*
048             * NOTE FOR DEVELOPERS:
049             *
050             * Never modify or reference this interface directly. Always use {@link EmailAddressServiceUtil} to access the email address remote service. Add custom service methods to {@link com.liferay.portal.service.impl.EmailAddressServiceImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
051             */
052            public EmailAddress addEmailAddress(java.lang.String className,
053                    long classPK, java.lang.String address, long typeId, boolean primary,
054                    ServiceContext serviceContext) throws PortalException;
055    
056            /**
057            * Returns the email address with the primary key.
058            *
059            * @param emailAddressId the primary key of the email address
060            * @return the email address with the primary key, or <code>null</code> if
061            an email address with the primary key could not be found or if
062            the user did not have permission to view the email address
063            */
064            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
065            public EmailAddress fetchEmailAddress(long emailAddressId)
066                    throws PortalException;
067    
068            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
069            public EmailAddress getEmailAddress(long emailAddressId)
070                    throws PortalException;
071    
072            public EmailAddress updateEmailAddress(long emailAddressId,
073                    java.lang.String address, long typeId, boolean primary)
074                    throws PortalException;
075    
076            /**
077            * Returns the OSGi service identifier.
078            *
079            * @return the OSGi service identifier
080            */
081            public java.lang.String getOSGiServiceIdentifier();
082    
083            @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
084            public List<EmailAddress> getEmailAddresses(java.lang.String className,
085                    long classPK) throws PortalException;
086    
087            public void deleteEmailAddress(long emailAddressId)
088                    throws PortalException;
089    }