All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
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.
com.liferay.object.service.ObjectValidationRuleServiceWrapper Maven / Gradle / Ivy
/**
* 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;
/**
* Provides a wrapper for {@link ObjectValidationRuleService}.
*
* @author Marco Leo
* @see ObjectValidationRuleService
* @generated
*/
public class ObjectValidationRuleServiceWrapper
implements ObjectValidationRuleService,
ServiceWrapper {
public ObjectValidationRuleServiceWrapper() {
this(null);
}
public ObjectValidationRuleServiceWrapper(
ObjectValidationRuleService objectValidationRuleService) {
_objectValidationRuleService = objectValidationRuleService;
}
@Override
public com.liferay.object.model.ObjectValidationRule
addObjectValidationRule(
String externalReferenceCode, long objectDefinitionId,
boolean active, String engine,
java.util.Map errorLabelMap,
java.util.Map nameMap,
String outputType, String script, boolean system,
java.util.List
objectValidationRuleSettings)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectValidationRuleService.addObjectValidationRule(
externalReferenceCode, objectDefinitionId, active, engine,
errorLabelMap, nameMap, outputType, script, system,
objectValidationRuleSettings);
}
@Override
public com.liferay.object.model.ObjectValidationRule
deleteObjectValidationRule(long objectValidationRuleId)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectValidationRuleService.deleteObjectValidationRule(
objectValidationRuleId);
}
@Override
public com.liferay.object.model.ObjectValidationRule
getObjectValidationRule(long objectValidationRuleId)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectValidationRuleService.getObjectValidationRule(
objectValidationRuleId);
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
@Override
public String getOSGiServiceIdentifier() {
return _objectValidationRuleService.getOSGiServiceIdentifier();
}
@Override
public com.liferay.object.model.ObjectValidationRule
updateObjectValidationRule(
String externalReferenceCode, long objectValidationRuleId,
boolean active, String engine,
java.util.Map errorLabelMap,
java.util.Map nameMap,
String outputType, String script,
java.util.List
objectValidationRuleSettings)
throws com.liferay.portal.kernel.exception.PortalException {
return _objectValidationRuleService.updateObjectValidationRule(
externalReferenceCode, objectValidationRuleId, active, engine,
errorLabelMap, nameMap, outputType, script,
objectValidationRuleSettings);
}
@Override
public ObjectValidationRuleService getWrappedService() {
return _objectValidationRuleService;
}
@Override
public void setWrappedService(
ObjectValidationRuleService objectValidationRuleService) {
_objectValidationRuleService = objectValidationRuleService;
}
private ObjectValidationRuleService _objectValidationRuleService;
}