Liferay 7.0-ce-m6

com.liferay.portal.service
Interface AddressService

All Superinterfaces:
BaseService
All Known Implementing Classes:
AddressServiceWrapper

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

Provides the remote service interface for Address. 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, com.liferay.portal.service.impl.AddressServiceImpl

Method Summary
 Address addAddress(String className, long classPK, String street1, String street2, String street3, String city, String zip, long regionId, long countryId, long typeId, boolean mailing, boolean primary)
          Deprecated. As of 6.2.0, replaced by #addAddress(String, long, String, String, String, String, String, long, long, int, boolean, boolean, ServiceContext)
 Address addAddress(String className, long classPK, String street1, String street2, String street3, String city, String zip, long regionId, long countryId, long typeId, boolean mailing, boolean primary, ServiceContext serviceContext)
           
 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, long typeId, boolean mailing, boolean primary)
           
 

Method Detail

addAddress

@Deprecated
Address addAddress(String className,
                              long classPK,
                              String street1,
                              String street2,
                              String street3,
                              String city,
                              String zip,
                              long regionId,
                              long countryId,
                              long typeId,
                              boolean mailing,
                              boolean primary)
                   throws PortalException
Deprecated. As of 6.2.0, replaced by #addAddress(String, long, String, String, String, String, String, long, long, int, boolean, boolean, ServiceContext)

Throws:
PortalException

addAddress

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

deleteAddress

void deleteAddress(long addressId)
                   throws PortalException
Throws:
PortalException

getAddress

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

getAddresses

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

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

updateAddress

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

Liferay 7.0-ce-m6