com.liferay.sync.service.SyncDLObjectLocalServiceWrapper Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.sync.service;
import aQute.bnd.annotation.ProviderType;
import com.liferay.portal.kernel.service.ServiceWrapper;
/**
* Provides a wrapper for {@link SyncDLObjectLocalService}.
*
* @author Brian Wing Shun Chan
* @see SyncDLObjectLocalService
* @generated
*/
@ProviderType
public class SyncDLObjectLocalServiceWrapper implements SyncDLObjectLocalService,
ServiceWrapper {
public SyncDLObjectLocalServiceWrapper(
SyncDLObjectLocalService syncDLObjectLocalService) {
_syncDLObjectLocalService = syncDLObjectLocalService;
}
@Override
public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
return _syncDLObjectLocalService.getActionableDynamicQuery();
}
@Override
public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
return _syncDLObjectLocalService.dynamicQuery();
}
@Override
public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() {
return _syncDLObjectLocalService.getIndexableActionableDynamicQuery();
}
/**
* @throws PortalException
*/
@Override
public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(
com.liferay.portal.kernel.model.PersistedModel persistedModel)
throws com.liferay.portal.kernel.exception.PortalException {
return _syncDLObjectLocalService.deletePersistedModel(persistedModel);
}
@Override
public com.liferay.portal.kernel.model.PersistedModel getPersistedModel(
java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException {
return _syncDLObjectLocalService.getPersistedModel(primaryKeyObj);
}
/**
* Adds the sync d l object to the database. Also notifies the appropriate model listeners.
*
* @param syncDLObject the sync d l object
* @return the sync d l object that was added
*/
@Override
public com.liferay.sync.model.SyncDLObject addSyncDLObject(
com.liferay.sync.model.SyncDLObject syncDLObject) {
return _syncDLObjectLocalService.addSyncDLObject(syncDLObject);
}
@Override
public com.liferay.sync.model.SyncDLObject addSyncDLObject(long companyId,
long userId, java.lang.String userName, long modifiedTime,
long repositoryId, long parentFolderId, java.lang.String treePath,
java.lang.String name, java.lang.String extension,
java.lang.String mimeType, java.lang.String description,
java.lang.String changeLog, java.lang.String extraSettings,
java.lang.String version, long versionId, long size,
java.lang.String checksum, java.lang.String event,
java.lang.String lanTokenKey, java.util.Date lockExpirationDate,
long lockUserId, java.lang.String lockUserName, java.lang.String type,
long typePK, java.lang.String typeUuid)
throws com.liferay.portal.kernel.exception.PortalException {
return _syncDLObjectLocalService.addSyncDLObject(companyId, userId,
userName, modifiedTime, repositoryId, parentFolderId, treePath,
name, extension, mimeType, description, changeLog, extraSettings,
version, versionId, size, checksum, event, lanTokenKey,
lockExpirationDate, lockUserId, lockUserName, type, typePK, typeUuid);
}
/**
* @deprecated As of 1.3.0, replaced by {@link #addSyncDLObject(long, long,
String, long, long, long, String, String, String, String,
String, String, String, String, long, long, String, String,
String, Date, long, String, String, long, String)}
*/
@Deprecated
@Override
public com.liferay.sync.model.SyncDLObject addSyncDLObject(long companyId,
long userId, java.lang.String userName, long modifiedTime,
long repositoryId, long parentFolderId, java.lang.String treePath,
java.lang.String name, java.lang.String extension,
java.lang.String mimeType, java.lang.String description,
java.lang.String changeLog, java.lang.String extraSettings,
java.lang.String version, long versionId, long size,
java.lang.String checksum, java.lang.String event,
java.util.Date lockExpirationDate, long lockUserId,
java.lang.String lockUserName, java.lang.String type, long typePK,
java.lang.String typeUuid)
throws com.liferay.portal.kernel.exception.PortalException {
return _syncDLObjectLocalService.addSyncDLObject(companyId, userId,
userName, modifiedTime, repositoryId, parentFolderId, treePath,
name, extension, mimeType, description, changeLog, extraSettings,
version, versionId, size, checksum, event, lockExpirationDate,
lockUserId, lockUserName, type, typePK, typeUuid);
}
/**
* Creates a new sync d l object with the primary key. Does not add the sync d l object to the database.
*
* @param syncDLObjectId the primary key for the new sync d l object
* @return the new sync d l object
*/
@Override
public com.liferay.sync.model.SyncDLObject createSyncDLObject(
long syncDLObjectId) {
return _syncDLObjectLocalService.createSyncDLObject(syncDLObjectId);
}
/**
* Deletes the sync d l object from the database. Also notifies the appropriate model listeners.
*
* @param syncDLObject the sync d l object
* @return the sync d l object that was removed
*/
@Override
public com.liferay.sync.model.SyncDLObject deleteSyncDLObject(
com.liferay.sync.model.SyncDLObject syncDLObject) {
return _syncDLObjectLocalService.deleteSyncDLObject(syncDLObject);
}
/**
* Deletes the sync d l object with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param syncDLObjectId the primary key of the sync d l object
* @return the sync d l object that was removed
* @throws PortalException if a sync d l object with the primary key could not be found
*/
@Override
public com.liferay.sync.model.SyncDLObject deleteSyncDLObject(
long syncDLObjectId)
throws com.liferay.portal.kernel.exception.PortalException {
return _syncDLObjectLocalService.deleteSyncDLObject(syncDLObjectId);
}
@Override
public com.liferay.sync.model.SyncDLObject fetchSyncDLObject(
java.lang.String type, long typePK) {
return _syncDLObjectLocalService.fetchSyncDLObject(type, typePK);
}
@Override
public com.liferay.sync.model.SyncDLObject fetchSyncDLObject(
long syncDLObjectId) {
return _syncDLObjectLocalService.fetchSyncDLObject(syncDLObjectId);
}
/**
* Returns the sync d l object with the primary key.
*
* @param syncDLObjectId the primary key of the sync d l object
* @return the sync d l object
* @throws PortalException if a sync d l object with the primary key could not be found
*/
@Override
public com.liferay.sync.model.SyncDLObject getSyncDLObject(
long syncDLObjectId)
throws com.liferay.portal.kernel.exception.PortalException {
return _syncDLObjectLocalService.getSyncDLObject(syncDLObjectId);
}
/**
* Updates the sync d l object in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
*
* @param syncDLObject the sync d l object
* @return the sync d l object that was updated
*/
@Override
public com.liferay.sync.model.SyncDLObject updateSyncDLObject(
com.liferay.sync.model.SyncDLObject syncDLObject) {
return _syncDLObjectLocalService.updateSyncDLObject(syncDLObject);
}
/**
* Returns the number of sync d l objects.
*
* @return the number of sync d l objects
*/
@Override
public int getSyncDLObjectsCount() {
return _syncDLObjectLocalService.getSyncDLObjectsCount();
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
@Override
public java.lang.String getOSGiServiceIdentifier() {
return _syncDLObjectLocalService.getOSGiServiceIdentifier();
}
/**
* Performs a dynamic query on the database and returns the matching rows.
*
* @param dynamicQuery the dynamic query
* @return the matching rows
*/
@Override
public java.util.List dynamicQuery(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
return _syncDLObjectLocalService.dynamicQuery(dynamicQuery);
}
/**
* 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 {@link com.liferay.portal.kernel.dao.orm.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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.sync.model.impl.SyncDLObjectModelImpl}. 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.
*
*
* @param dynamicQuery the dynamic query
* @param start the lower bound of the range of model instances
* @param end the upper bound of the range of model instances (not inclusive)
* @return the range of matching rows
*/
@Override
public java.util.List dynamicQuery(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
int end) {
return _syncDLObjectLocalService.dynamicQuery(dynamicQuery, start, end);
}
/**
* 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 {@link com.liferay.portal.kernel.dao.orm.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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.sync.model.impl.SyncDLObjectModelImpl}. 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.
*
*
* @param dynamicQuery the dynamic query
* @param start the lower bound of the range of model instances
* @param end the upper bound of the range of model instances (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching rows
*/
@Override
public java.util.List dynamicQuery(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator) {
return _syncDLObjectLocalService.dynamicQuery(dynamicQuery, start, end,
orderByComparator);
}
/**
* Returns a range of all the sync d l objects.
*
*
* 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 {@link com.liferay.portal.kernel.dao.orm.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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.sync.model.impl.SyncDLObjectModelImpl}. 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.
*
*
* @param start the lower bound of the range of sync d l objects
* @param end the upper bound of the range of sync d l objects (not inclusive)
* @return the range of sync d l objects
*/
@Override
public java.util.List getSyncDLObjects(
int start, int end) {
return _syncDLObjectLocalService.getSyncDLObjects(start, end);
}
@Override
public java.util.List getSyncDLObjects(
long repositoryId, long parentFolderId) {
return _syncDLObjectLocalService.getSyncDLObjects(repositoryId,
parentFolderId);
}
/**
* Returns the number of rows matching the dynamic query.
*
* @param dynamicQuery the dynamic query
* @return the number of rows matching the dynamic query
*/
@Override
public long dynamicQueryCount(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
return _syncDLObjectLocalService.dynamicQueryCount(dynamicQuery);
}
/**
* Returns the number of rows matching the dynamic query.
*
* @param dynamicQuery the dynamic query
* @param projection the projection to apply to the query
* @return the number of rows matching the dynamic query
*/
@Override
public long dynamicQueryCount(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
com.liferay.portal.kernel.dao.orm.Projection projection) {
return _syncDLObjectLocalService.dynamicQueryCount(dynamicQuery,
projection);
}
@Override
public long getLatestModifiedTime() {
return _syncDLObjectLocalService.getLatestModifiedTime();
}
@Override
public void deleteSyncDLObjects(java.lang.String version,
java.lang.String type) {
_syncDLObjectLocalService.deleteSyncDLObjects(version, type);
}
@Override
public void moveSyncDLObjects(
com.liferay.sync.model.SyncDLObject parentSyncDLObject)
throws com.liferay.portal.kernel.exception.PortalException {
_syncDLObjectLocalService.moveSyncDLObjects(parentSyncDLObject);
}
@Override
public void restoreSyncDLObjects(
com.liferay.sync.model.SyncDLObject parentSyncDLObject)
throws com.liferay.portal.kernel.exception.PortalException {
_syncDLObjectLocalService.restoreSyncDLObjects(parentSyncDLObject);
}
@Override
public void trashSyncDLObjects(
com.liferay.sync.model.SyncDLObject parentSyncDLObject)
throws com.liferay.portal.kernel.exception.PortalException {
_syncDLObjectLocalService.trashSyncDLObjects(parentSyncDLObject);
}
@Override
public SyncDLObjectLocalService getWrappedService() {
return _syncDLObjectLocalService;
}
@Override
public void setWrappedService(
SyncDLObjectLocalService syncDLObjectLocalService) {
_syncDLObjectLocalService = syncDLObjectLocalService;
}
private SyncDLObjectLocalService _syncDLObjectLocalService;
}