Liferay 6.1.2-ce-ga3

com.liferay.portal.service
Interface AddressService

All Superinterfaces:
BaseService
All Known Implementing Classes:
AddressServiceBaseImpl, AddressServiceImpl, AddressServiceWrapper

@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface AddressService
extends BaseService

The interface for the address remote service.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
AddressServiceUtil, AddressServiceBaseImpl, AddressServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 Address addAddress(String className, long classPK, String street1, String street2, String street3, String city, String zip, long regionId, long countryId, int typeId, boolean mailing, boolean primary)
           
 void deleteAddress(long addressId)
           
 Address getAddress(long addressId)
           
 List<Address> getAddresses(String className, long classPK)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 Address updateAddress(long addressId, String street1, String street2, String street3, String city, String zip, long regionId, long countryId, int typeId, boolean mailing, boolean primary)
           
 

Method Detail

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

addAddress

Address addAddress(String className,
                   long classPK,
                   String street1,
                   String street2,
                   String street3,
                   String city,
                   String zip,
                   long regionId,
                   long countryId,
                   int typeId,
                   boolean mailing,
                   boolean primary)
                   throws PortalException,
                          SystemException
Throws:
PortalException
SystemException

deleteAddress

void deleteAddress(long addressId)
                   throws PortalException,
                          SystemException
Throws:
PortalException
SystemException

getAddress

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Address getAddress(long addressId)
                   throws PortalException,
                          SystemException
Throws:
PortalException
SystemException

getAddresses

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Address> getAddresses(String className,
                                                                    long classPK)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

updateAddress

Address updateAddress(long addressId,
                      String street1,
                      String street2,
                      String street3,
                      String city,
                      String zip,
                      long regionId,
                      long countryId,
                      int typeId,
                      boolean mailing,
                      boolean primary)
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

Liferay 6.1.2-ce-ga3