|
Liferay 6.2.0-ce-m5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.documentlibrary.service.DLSyncLocalServiceWrapper
public class DLSyncLocalServiceWrapper
This class is a wrapper for DLSyncLocalService.
DLSyncLocalService| Constructor Summary | |
|---|---|
DLSyncLocalServiceWrapper(DLSyncLocalService dlSyncLocalService)
|
|
| Method Summary | |
|---|---|
DLSync |
addDLSync(DLSync dlSync)
Adds the d l sync to the database. |
DLSync |
addSync(long fileId,
String fileUuid,
long companyId,
long repositoryId,
long parentFolderId,
String name,
String type,
String version)
Deprecated. As of 6.2.0, replaced by addSync(long, String, long,
long, long, String, String, String, String) |
DLSync |
addSync(long fileId,
String fileUuid,
long companyId,
long repositoryId,
long parentFolderId,
String name,
String description,
String type,
String version)
|
DLSync |
createDLSync(long syncId)
Creates a new d l sync with the primary key. |
DLSync |
deleteDLSync(DLSync dlSync)
Deletes the d l sync from the database. |
DLSync |
deleteDLSync(long syncId)
Deletes the d l sync with the primary key from the database. |
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. |
DLSync |
fetchDLSync(long syncId)
|
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
DLSync |
getDLSync(long syncId)
Returns the d l sync with the primary key. |
List<DLSync> |
getDLSyncs(int start,
int end)
Returns a range of all the d l syncs. |
int |
getDLSyncsCount()
Returns the number of d l syncs. |
PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
DLSyncLocalService |
getWrappedDLSyncLocalService()
Deprecated. As of 6.1.0, replaced by getWrappedService() |
DLSyncLocalService |
getWrappedService()
|
void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setWrappedDLSyncLocalService(DLSyncLocalService dlSyncLocalService)
Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portlet.documentlibrary.service.DLSyncLocalService) |
void |
setWrappedService(DLSyncLocalService dlSyncLocalService)
|
DLSync |
updateDLSync(DLSync dlSync)
Updates the d l sync in the database or adds it if it does not yet exist. |
DLSync |
updateSync(long fileId,
long parentFolderId,
String name,
String event,
String version)
Deprecated. As of 6.2.0, replaced by updateSync(long, long,
String, String, String, String) |
DLSync |
updateSync(long fileId,
long parentFolderId,
String name,
String description,
String event,
String version)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DLSyncLocalServiceWrapper(DLSyncLocalService dlSyncLocalService)
| Method Detail |
|---|
public DLSync addDLSync(DLSync dlSync)
throws SystemException
addDLSync in interface DLSyncLocalServicedlSync - the d l sync
SystemException - if a system exception occurredpublic DLSync createDLSync(long syncId)
createDLSync in interface DLSyncLocalServicesyncId - the primary key for the new d l sync
public DLSync deleteDLSync(long syncId)
throws PortalException,
SystemException
deleteDLSync in interface DLSyncLocalServicesyncId - the primary key of the d l sync
PortalException - if a d l sync with the primary key could not be found
SystemException - if a system exception occurred
public DLSync deleteDLSync(DLSync dlSync)
throws SystemException
deleteDLSync in interface DLSyncLocalServicedlSync - the d l sync
SystemException - if a system exception occurredpublic DynamicQuery dynamicQuery()
dynamicQuery in interface DLSyncLocalService
public List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery in interface DLSyncLocalServicedynamicQuery - the dynamic query
SystemException - if a system exception occurred
public 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 DLSyncModelImpl. 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 DLSyncLocalServicedynamicQuery - 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 occurred
public 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 DLSyncModelImpl. 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 DLSyncLocalServicedynamicQuery - 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 occurred
public long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQueryCount in interface DLSyncLocalServicedynamicQuery - the dynamic query
SystemException - if a system exception occurred
public DLSync fetchDLSync(long syncId)
throws SystemException
fetchDLSync in interface DLSyncLocalServiceSystemException
public DLSync getDLSync(long syncId)
throws PortalException,
SystemException
getDLSync in interface DLSyncLocalServicesyncId - the primary key of the d l sync
PortalException - if a d l sync with the primary key could not be found
SystemException - if a system exception occurred
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException,
SystemException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface DLSyncLocalServicePortalException
SystemException
public List<DLSync> getDLSyncs(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 DLSyncModelImpl. 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.
getDLSyncs in interface DLSyncLocalServicestart - the lower bound of the range of d l syncsend - the upper bound of the range of d l syncs (not inclusive)
SystemException - if a system exception occurred
public int getDLSyncsCount()
throws SystemException
getDLSyncsCount in interface DLSyncLocalServiceSystemException - if a system exception occurred
public DLSync updateDLSync(DLSync dlSync)
throws SystemException
updateDLSync in interface DLSyncLocalServicedlSync - the d l sync
SystemException - if a system exception occurredpublic String getBeanIdentifier()
getBeanIdentifier in interface DLSyncLocalServicepublic void setBeanIdentifier(String beanIdentifier)
setBeanIdentifier in interface DLSyncLocalServicebeanIdentifier - the Spring bean ID for this bean
public DLSync addSync(long fileId,
String fileUuid,
long companyId,
long repositoryId,
long parentFolderId,
String name,
String type,
String version)
throws PortalException,
SystemException
addSync(long, String, long,
long, long, String, String, String, String)
addSync in interface DLSyncLocalServicePortalException
SystemException
public DLSync addSync(long fileId,
String fileUuid,
long companyId,
long repositoryId,
long parentFolderId,
String name,
String description,
String type,
String version)
throws PortalException,
SystemException
addSync in interface DLSyncLocalServicePortalException
SystemException
public DLSync updateSync(long fileId,
long parentFolderId,
String name,
String event,
String version)
throws PortalException,
SystemException
updateSync(long, long,
String, String, String, String)
updateSync in interface DLSyncLocalServicePortalException
SystemException
public DLSync updateSync(long fileId,
long parentFolderId,
String name,
String description,
String event,
String version)
throws PortalException,
SystemException
updateSync in interface DLSyncLocalServicePortalException
SystemExceptionpublic DLSyncLocalService getWrappedDLSyncLocalService()
getWrappedService()
public void setWrappedDLSyncLocalService(DLSyncLocalService dlSyncLocalService)
setWrappedService(com.liferay.portlet.documentlibrary.service.DLSyncLocalService)
public DLSyncLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<DLSyncLocalService>public void setWrappedService(DLSyncLocalService dlSyncLocalService)
setWrappedService in interface ServiceWrapper<DLSyncLocalService>
|
Liferay 6.2.0-ce-m5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||