Liferay 6.1.2-ce-ga3

com.liferay.portal.service
Class EmailAddressLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.EmailAddressLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, EmailAddressLocalService, PersistedModelLocalService, ServiceWrapper<EmailAddressLocalService>

public class EmailAddressLocalServiceWrapper
extends Object
implements EmailAddressLocalService, ServiceWrapper<EmailAddressLocalService>

This class is a wrapper for EmailAddressLocalService.

See Also:
EmailAddressLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
EmailAddressLocalServiceWrapper(EmailAddressLocalService emailAddressLocalService)
           
 
Method Summary
 EmailAddress addEmailAddress(EmailAddress emailAddress)
          Adds the email address to the database.
 EmailAddress addEmailAddress(long userId, String className, long classPK, String address, int typeId, boolean primary)
           
 EmailAddress createEmailAddress(long emailAddressId)
          Creates a new email address with the primary key.
 EmailAddress deleteEmailAddress(EmailAddress emailAddress)
          Deletes the email address from the database.
 EmailAddress deleteEmailAddress(long emailAddressId)
          Deletes the email address with the primary key from the database.
 void deleteEmailAddresses(long companyId, String className, long classPK)
           
 DynamicQuery dynamicQuery()
           
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows that match the dynamic query.
 EmailAddress fetchEmailAddress(long emailAddressId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 EmailAddress getEmailAddress(long emailAddressId)
          Returns the email address with the primary key.
 List<EmailAddress> getEmailAddresses()
           
 List<EmailAddress> getEmailAddresses(int start, int end)
          Returns a range of all the email addresses.
 List<EmailAddress> getEmailAddresses(long companyId, String className, long classPK)
           
 int getEmailAddressesCount()
          Returns the number of email addresses.
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 EmailAddressLocalService getWrappedEmailAddressLocalService()
          Deprecated. Renamed to getWrappedService()
 EmailAddressLocalService getWrappedService()
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedEmailAddressLocalService(EmailAddressLocalService emailAddressLocalService)
          Deprecated. Renamed to setWrappedService(com.liferay.portal.service.EmailAddressLocalService)
 void setWrappedService(EmailAddressLocalService emailAddressLocalService)
           
 EmailAddress updateEmailAddress(EmailAddress emailAddress)
          Updates the email address in the database or adds it if it does not yet exist.
 EmailAddress updateEmailAddress(EmailAddress emailAddress, boolean merge)
          Updates the email address in the database or adds it if it does not yet exist.
 EmailAddress updateEmailAddress(long emailAddressId, String address, int typeId, boolean primary)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EmailAddressLocalServiceWrapper

public EmailAddressLocalServiceWrapper(EmailAddressLocalService emailAddressLocalService)
Method Detail

addEmailAddress

public EmailAddress addEmailAddress(EmailAddress emailAddress)
                             throws SystemException
Adds the email address to the database. Also notifies the appropriate model listeners.

Specified by:
addEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddress - the email address
Returns:
the email address that was added
Throws:
SystemException - if a system exception occurred

createEmailAddress

public EmailAddress createEmailAddress(long emailAddressId)
Creates a new email address with the primary key. Does not add the email address to the database.

Specified by:
createEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddressId - the primary key for the new email address
Returns:
the new email address

deleteEmailAddress

public EmailAddress deleteEmailAddress(long emailAddressId)
                                throws PortalException,
                                       SystemException
Deletes the email address with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddressId - the primary key of the email address
Returns:
the email address that was removed
Throws:
PortalException - if a email address with the primary key could not be found
SystemException - if a system exception occurred

deleteEmailAddress

public EmailAddress deleteEmailAddress(EmailAddress emailAddress)
                                throws SystemException
Deletes the email address from the database. Also notifies the appropriate model listeners.

Specified by:
deleteEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddress - the email address
Returns:
the email address that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface EmailAddressLocalService

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface EmailAddressLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface EmailAddressLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface EmailAddressLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Returns the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface EmailAddressLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchEmailAddress

public EmailAddress fetchEmailAddress(long emailAddressId)
                               throws SystemException
Specified by:
fetchEmailAddress in interface EmailAddressLocalService
Throws:
SystemException

getEmailAddress

public EmailAddress getEmailAddress(long emailAddressId)
                             throws PortalException,
                                    SystemException
Returns the email address with the primary key.

Specified by:
getEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddressId - the primary key of the email address
Returns:
the email address
Throws:
PortalException - if a email address with the primary key could not be found
SystemException - if a system exception occurred

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface EmailAddressLocalService
Specified by:
getPersistedModel in interface PersistedModelLocalService
Throws:
PortalException
SystemException

getEmailAddresses

public List<EmailAddress> getEmailAddresses(int start,
                                            int end)
                                     throws SystemException
Returns a range of all the email addresses.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
getEmailAddresses in interface EmailAddressLocalService
Parameters:
start - the lower bound of the range of email addresses
end - the upper bound of the range of email addresses (not inclusive)
Returns:
the range of email addresses
Throws:
SystemException - if a system exception occurred

getEmailAddressesCount

public int getEmailAddressesCount()
                           throws SystemException
Returns the number of email addresses.

Specified by:
getEmailAddressesCount in interface EmailAddressLocalService
Returns:
the number of email addresses
Throws:
SystemException - if a system exception occurred

updateEmailAddress

public EmailAddress updateEmailAddress(EmailAddress emailAddress)
                                throws SystemException
Updates the email address in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddress - the email address
Returns:
the email address that was updated
Throws:
SystemException - if a system exception occurred

updateEmailAddress

public EmailAddress updateEmailAddress(EmailAddress emailAddress,
                                       boolean merge)
                                throws SystemException
Updates the email address in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddress - the email address
merge - whether to merge the email address with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the email address that was updated
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

public String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Specified by:
getBeanIdentifier in interface EmailAddressLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

public void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Specified by:
setBeanIdentifier in interface EmailAddressLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addEmailAddress

public EmailAddress addEmailAddress(long userId,
                                    String className,
                                    long classPK,
                                    String address,
                                    int typeId,
                                    boolean primary)
                             throws PortalException,
                                    SystemException
Specified by:
addEmailAddress in interface EmailAddressLocalService
Throws:
PortalException
SystemException

deleteEmailAddresses

public void deleteEmailAddresses(long companyId,
                                 String className,
                                 long classPK)
                          throws SystemException
Specified by:
deleteEmailAddresses in interface EmailAddressLocalService
Throws:
SystemException

getEmailAddresses

public List<EmailAddress> getEmailAddresses()
                                     throws SystemException
Specified by:
getEmailAddresses in interface EmailAddressLocalService
Throws:
SystemException

getEmailAddresses

public List<EmailAddress> getEmailAddresses(long companyId,
                                            String className,
                                            long classPK)
                                     throws SystemException
Specified by:
getEmailAddresses in interface EmailAddressLocalService
Throws:
SystemException

updateEmailAddress

public EmailAddress updateEmailAddress(long emailAddressId,
                                       String address,
                                       int typeId,
                                       boolean primary)
                                throws PortalException,
                                       SystemException
Specified by:
updateEmailAddress in interface EmailAddressLocalService
Throws:
PortalException
SystemException

getWrappedEmailAddressLocalService

public EmailAddressLocalService getWrappedEmailAddressLocalService()
Deprecated. Renamed to getWrappedService()


setWrappedEmailAddressLocalService

public void setWrappedEmailAddressLocalService(EmailAddressLocalService emailAddressLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portal.service.EmailAddressLocalService)


getWrappedService

public EmailAddressLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<EmailAddressLocalService>

setWrappedService

public void setWrappedService(EmailAddressLocalService emailAddressLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<EmailAddressLocalService>

Liferay 6.1.2-ce-ga3