Liferay 6.0-ee

com.liferay.portal.service
Class EmailAddressLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.EmailAddressLocalServiceWrapper
All Implemented Interfaces:
EmailAddressLocalService

public class EmailAddressLocalServiceWrapper
extends Object
implements 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.
 void deleteEmailAddress(EmailAddress emailAddress)
          Deletes the email address from the database.
 void deleteEmailAddress(long emailAddressId)
          Deletes the email address with the primary key from the database.
 void deleteEmailAddresses(long companyId, String className, long classPK)
           
 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)
          Counts the number of rows that match the dynamic query.
 EmailAddress getEmailAddress(long emailAddressId)
          Gets the email address with the primary key.
 List<EmailAddress> getEmailAddresses()
           
 List<EmailAddress> getEmailAddresses(int start, int end)
          Gets a range of all the email addresses.
 List<EmailAddress> getEmailAddresses(long companyId, String className, long classPK)
           
 int getEmailAddressesCount()
          Gets the number of email addresses.
 EmailAddressLocalService getWrappedEmailAddressLocalService()
           
 EmailAddress updateEmailAddress(EmailAddress emailAddress)
          Updates the email address in the database.
 EmailAddress updateEmailAddress(EmailAddress emailAddress, boolean merge)
          Updates the email address in the database.
 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 to add
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 void 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 to delete
Throws:
PortalException - if a email address with the primary key could not be found
SystemException - if a system exception occurred

deleteEmailAddress

public void 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 to delete
Throws:
SystemException - if a system exception occurred

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 to search with
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 to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (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 to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

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

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

getEmailAddress

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

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

getEmailAddresses

public List<EmailAddress> getEmailAddresses(int start,
                                            int end)
                                     throws SystemException
Gets 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 to return
end - the upper bound of the range of email addresses to return (not inclusive)
Returns:
the range of email addresses
Throws:
SystemException - if a system exception occurred

getEmailAddressesCount

public int getEmailAddressesCount()
                           throws SystemException
Gets 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. Also notifies the appropriate model listeners.

Specified by:
updateEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddress - the email address to update
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. Also notifies the appropriate model listeners.

Specified by:
updateEmailAddress in interface EmailAddressLocalService
Parameters:
emailAddress - the email address to update
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

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()

Liferay 6.0-ee