Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.object.service;
import com.liferay.portal.kernel.service.ServiceWrapper;
import com.liferay.portal.kernel.service.persistence.BasePersistence;
/**
* Provides a wrapper for {@link ObjectEntryLocalService}.
*
* @author Marco Leo
* @see ObjectEntryLocalService
* @generated
*/
public class ObjectEntryLocalServiceWrapper
implements ObjectEntryLocalService,
ServiceWrapper {
public ObjectEntryLocalServiceWrapper() {
this(null);
}
public ObjectEntryLocalServiceWrapper(
ObjectEntryLocalService objectEntryLocalService) {
_objectEntryLocalService = objectEntryLocalService;
}
@Override
public com.liferay.object.model.ObjectEntry addObjectEntry(
long userId, long groupId, long objectDefinitionId,
java.util.Map values,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.addObjectEntry(
userId, groupId, objectDefinitionId, values, serviceContext);
}
/**
* Adds the object entry to the database. Also notifies the appropriate model listeners.
*
*
* Important: Inspect ObjectEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param objectEntry the object entry
* @return the object entry that was added
*/
@Override
public com.liferay.object.model.ObjectEntry addObjectEntry(
com.liferay.object.model.ObjectEntry objectEntry) {
return _objectEntryLocalService.addObjectEntry(objectEntry);
}
@Override
public com.liferay.object.model.ObjectEntry addObjectEntry(
String externalReferenceCode, long userId,
com.liferay.object.model.ObjectDefinition objectDefinition)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.addObjectEntry(
externalReferenceCode, userId, objectDefinition);
}
@Override
public void addOrUpdateExtensionDynamicObjectDefinitionTableValues(
long userId,
com.liferay.object.model.ObjectDefinition objectDefinition,
long primaryKey, java.util.Map values,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
_objectEntryLocalService.
addOrUpdateExtensionDynamicObjectDefinitionTableValues(
userId, objectDefinition, primaryKey, values, serviceContext);
}
@Override
public com.liferay.object.model.ObjectEntry addOrUpdateObjectEntry(
String externalReferenceCode, long userId, long groupId,
long objectDefinitionId,
java.util.Map values,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.addOrUpdateObjectEntry(
externalReferenceCode, userId, groupId, objectDefinitionId, values,
serviceContext);
}
/**
* Creates a new object entry with the primary key. Does not add the object entry to the database.
*
* @param objectEntryId the primary key for the new object entry
* @return the new object entry
*/
@Override
public com.liferay.object.model.ObjectEntry createObjectEntry(
long objectEntryId) {
return _objectEntryLocalService.createObjectEntry(objectEntryId);
}
/**
* @throws PortalException
*/
@Override
public com.liferay.portal.kernel.model.PersistedModel createPersistedModel(
java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.createPersistedModel(primaryKeyObj);
}
@Override
public void deleteExtensionDynamicObjectDefinitionTableValues(
com.liferay.object.model.ObjectDefinition objectDefinition,
long primaryKey)
throws com.liferay.portal.kernel.exception.PortalException {
_objectEntryLocalService.
deleteExtensionDynamicObjectDefinitionTableValues(
objectDefinition, primaryKey);
}
/**
* Deletes the object entry with the primary key from the database. Also notifies the appropriate model listeners.
*
*
* Important: Inspect ObjectEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param objectEntryId the primary key of the object entry
* @return the object entry that was removed
* @throws PortalException if a object entry with the primary key could not be found
*/
@Override
public com.liferay.object.model.ObjectEntry deleteObjectEntry(
long objectEntryId)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.deleteObjectEntry(objectEntryId);
}
/**
* Deletes the object entry from the database. Also notifies the appropriate model listeners.
*
*
* Important: Inspect ObjectEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param objectEntry the object entry
* @return the object entry that was removed
* @throws PortalException
*/
@Override
public com.liferay.object.model.ObjectEntry deleteObjectEntry(
com.liferay.object.model.ObjectEntry objectEntry)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.deleteObjectEntry(objectEntry);
}
@Override
public com.liferay.object.model.ObjectEntry deleteObjectEntry(
String externalReferenceCode, long companyId, long groupId)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.deleteObjectEntry(
externalReferenceCode, companyId, groupId);
}
/**
* @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 _objectEntryLocalService.deletePersistedModel(persistedModel);
}
@Override
public void deleteRelatedObjectEntries(
long groupId, long objectDefinitionId, long primaryKey)
throws com.liferay.portal.kernel.exception.PortalException {
_objectEntryLocalService.deleteRelatedObjectEntries(
groupId, objectDefinitionId, primaryKey);
}
@Override
public T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) {
return _objectEntryLocalService.dslQuery(dslQuery);
}
@Override
public int dslQueryCount(
com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) {
return _objectEntryLocalService.dslQueryCount(dslQuery);
}
@Override
public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
return _objectEntryLocalService.dynamicQuery();
}
/**
* 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 _objectEntryLocalService.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 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, then the query will include the default ORDER BY logic from com.liferay.object.model.impl.ObjectEntryModelImpl.
*
*
* @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 _objectEntryLocalService.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 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, then the query will include the default ORDER BY logic from com.liferay.object.model.impl.ObjectEntryModelImpl.
*
*
* @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 _objectEntryLocalService.dynamicQuery(
dynamicQuery, start, end, orderByComparator);
}
/**
* 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 _objectEntryLocalService.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 _objectEntryLocalService.dynamicQueryCount(
dynamicQuery, projection);
}
@Override
public com.liferay.object.model.ObjectEntry fetchManyToOneObjectEntry(
long groupId, long objectRelationshipId, long primaryKey)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectEntryLocalService.fetchManyToOneObjectEntry(
groupId, objectRelationshipId, primaryKey);
}
@Override
public com.liferay.object.model.ObjectEntry fetchObjectEntry(
long objectEntryId) {
return _objectEntryLocalService.fetchObjectEntry(objectEntryId);
}
@Override
public com.liferay.object.model.ObjectEntry fetchObjectEntry(
String externalReferenceCode, long objectDefinitionId) {
return _objectEntryLocalService.fetchObjectEntry(
externalReferenceCode, objectDefinitionId);
}
/**
* Returns the object entry matching the UUID and group.
*
* @param uuid the object entry's UUID
* @param groupId the primary key of the group
* @return the matching object entry, or null if a matching object entry could not be found
*/
@Override
public com.liferay.object.model.ObjectEntry
fetchObjectEntryByUuidAndGroupId(String uuid, long groupId) {
return _objectEntryLocalService.fetchObjectEntryByUuidAndGroupId(
uuid, groupId);
}
@Override
public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery
getActionableDynamicQuery() {
return _objectEntryLocalService.getActionableDynamicQuery();
}
@Override
public java.util.Map