@ProviderType public class PhoneLocalServiceWrapper extends java.lang.Object implements PhoneLocalService, ServiceWrapper<PhoneLocalService>
PhoneLocalService.PhoneLocalService| Constructor and Description |
|---|
PhoneLocalServiceWrapper(PhoneLocalService phoneLocalService) |
| Modifier and Type | Method and Description |
|---|---|
Phone |
addPhone(long userId,
java.lang.String className,
long classPK,
java.lang.String number,
java.lang.String extension,
int typeId,
boolean primary)
Deprecated.
As of 6.2.0, replaced by
addPhone(long, String, long,
String, String, int, boolean, ServiceContext) |
Phone |
addPhone(long userId,
java.lang.String className,
long classPK,
java.lang.String number,
java.lang.String extension,
int typeId,
boolean primary,
ServiceContext serviceContext) |
Phone |
addPhone(Phone phone)
Adds the phone to the database.
|
Phone |
createPhone(long phoneId)
Creates a new phone with the primary key.
|
Phone |
deletePhone(long phoneId)
Deletes the phone with the primary key from the database.
|
Phone |
deletePhone(Phone phone)
Deletes the phone from the database.
|
void |
deletePhones(long companyId,
java.lang.String className,
long classPK) |
DynamicQuery |
dynamicQuery() |
java.util.List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
java.util.List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
java.util.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.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows that match the dynamic query.
|
Phone |
fetchPhone(long phoneId) |
Phone |
fetchPhoneByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns the phone with the matching UUID and company.
|
java.lang.String |
getBeanIdentifier()
Returns the Spring bean ID for this bean.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
Phone |
getPhone(long phoneId)
Returns the phone with the primary key.
|
Phone |
getPhoneByUuidAndCompanyId(java.lang.String uuid,
long companyId)
Returns the phone with the matching UUID and company.
|
java.util.List<Phone> |
getPhones() |
java.util.List<Phone> |
getPhones(int start,
int end)
Returns a range of all the phones.
|
java.util.List<Phone> |
getPhones(long companyId,
java.lang.String className,
long classPK) |
int |
getPhonesCount()
Returns the number of phones.
|
PhoneLocalService |
getWrappedPhoneLocalService()
Deprecated.
As of 6.1.0, replaced by
getWrappedService() |
PhoneLocalService |
getWrappedService() |
void |
setBeanIdentifier(java.lang.String beanIdentifier)
Sets the Spring bean ID for this bean.
|
void |
setWrappedPhoneLocalService(PhoneLocalService phoneLocalService)
Deprecated.
As of 6.1.0, replaced by
setWrappedService(com.liferay.portal.service.PhoneLocalService) |
void |
setWrappedService(PhoneLocalService phoneLocalService) |
Phone |
updatePhone(long phoneId,
java.lang.String number,
java.lang.String extension,
int typeId,
boolean primary) |
Phone |
updatePhone(Phone phone)
Updates the phone in the database or adds it if it does not yet exist.
|
public PhoneLocalServiceWrapper(PhoneLocalService phoneLocalService)
public Phone addPhone(Phone phone) throws SystemException
addPhone in interface PhoneLocalServicephone - the phoneSystemException - if a system exception occurredpublic Phone createPhone(long phoneId)
createPhone in interface PhoneLocalServicephoneId - the primary key for the new phonepublic Phone deletePhone(long phoneId) throws PortalException, SystemException
deletePhone in interface PhoneLocalServicephoneId - the primary key of the phonePortalException - if a phone with the primary key could not be foundSystemException - if a system exception occurredpublic Phone deletePhone(Phone phone) throws SystemException
deletePhone in interface PhoneLocalServicephone - the phoneSystemException - if a system exception occurredpublic DynamicQuery dynamicQuery()
dynamicQuery in interface PhoneLocalServicepublic java.util.List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery in interface PhoneLocalServicedynamicQuery - the dynamic querySystemException - if a system exception occurredpublic java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from PhoneModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery in interface PhoneLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)SystemException - if a system exception occurredpublic java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from PhoneModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery in interface PhoneLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic long dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQueryCount in interface PhoneLocalServicedynamicQuery - the dynamic querySystemException - if a system exception occurredpublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection) throws SystemException
dynamicQueryCount in interface PhoneLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querySystemException - if a system exception occurredpublic Phone fetchPhone(long phoneId) throws SystemException
fetchPhone in interface PhoneLocalServiceSystemExceptionpublic Phone fetchPhoneByUuidAndCompanyId(java.lang.String uuid, long companyId) throws SystemException
fetchPhoneByUuidAndCompanyId in interface PhoneLocalServiceuuid - the phone's UUIDcompanyId - the primary key of the companynull if a matching phone could not be foundSystemException - if a system exception occurredpublic Phone getPhone(long phoneId) throws PortalException, SystemException
getPhone in interface PhoneLocalServicephoneId - the primary key of the phonePortalException - if a phone with the primary key could not be foundSystemException - if a system exception occurredpublic PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException, SystemException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface PhoneLocalServicePortalExceptionSystemExceptionpublic Phone getPhoneByUuidAndCompanyId(java.lang.String uuid, long companyId) throws PortalException, SystemException
getPhoneByUuidAndCompanyId in interface PhoneLocalServiceuuid - the phone's UUIDcompanyId - the primary key of the companyPortalException - if a matching phone could not be foundSystemException - if a system exception occurredpublic java.util.List<Phone> getPhones(int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from PhoneModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
getPhones in interface PhoneLocalServicestart - the lower bound of the range of phonesend - the upper bound of the range of phones (not inclusive)SystemException - if a system exception occurredpublic int getPhonesCount()
throws SystemException
getPhonesCount in interface PhoneLocalServiceSystemException - if a system exception occurredpublic Phone updatePhone(Phone phone) throws SystemException
updatePhone in interface PhoneLocalServicephone - the phoneSystemException - if a system exception occurredpublic java.lang.String getBeanIdentifier()
getBeanIdentifier in interface PhoneLocalServicepublic void setBeanIdentifier(java.lang.String beanIdentifier)
setBeanIdentifier in interface PhoneLocalServicebeanIdentifier - the Spring bean ID for this beanpublic Phone addPhone(long userId, java.lang.String className, long classPK, java.lang.String number, java.lang.String extension, int typeId, boolean primary) throws PortalException, SystemException
addPhone(long, String, long,
String, String, int, boolean, ServiceContext)addPhone in interface PhoneLocalServicePortalExceptionSystemExceptionpublic Phone addPhone(long userId, java.lang.String className, long classPK, java.lang.String number, java.lang.String extension, int typeId, boolean primary, ServiceContext serviceContext) throws PortalException, SystemException
addPhone in interface PhoneLocalServicePortalExceptionSystemExceptionpublic void deletePhones(long companyId,
java.lang.String className,
long classPK)
throws SystemException
deletePhones in interface PhoneLocalServiceSystemExceptionpublic java.util.List<Phone> getPhones() throws SystemException
getPhones in interface PhoneLocalServiceSystemExceptionpublic java.util.List<Phone> getPhones(long companyId, java.lang.String className, long classPK) throws SystemException
getPhones in interface PhoneLocalServiceSystemExceptionpublic Phone updatePhone(long phoneId, java.lang.String number, java.lang.String extension, int typeId, boolean primary) throws PortalException, SystemException
updatePhone in interface PhoneLocalServicePortalExceptionSystemExceptionpublic PhoneLocalService getWrappedPhoneLocalService()
getWrappedService()public void setWrappedPhoneLocalService(PhoneLocalService phoneLocalService)
setWrappedService(com.liferay.portal.service.PhoneLocalService)public PhoneLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<PhoneLocalService>public void setWrappedService(PhoneLocalService phoneLocalService)
setWrappedService in interface ServiceWrapper<PhoneLocalService>