All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.dispatch.model.DispatchTriggerModel Maven / Gradle / Ivy

The newest version!
/**
 * 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.dispatch.model;

import com.liferay.portal.kernel.bean.AutoEscape;
import com.liferay.portal.kernel.model.BaseModel;
import com.liferay.portal.kernel.model.ExternalReferenceCodeModel;
import com.liferay.portal.kernel.model.MVCCModel;
import com.liferay.portal.kernel.model.ShardedModel;
import com.liferay.portal.kernel.model.StagedAuditedModel;

import java.util.Date;

import org.osgi.annotation.versioning.ProviderType;

/**
 * The base model interface for the DispatchTrigger service. Represents a row in the "DispatchTrigger" database table, with each column mapped to a property of this class.
 *
 * 

* This interface and its corresponding implementation com.liferay.dispatch.model.impl.DispatchTriggerModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.dispatch.model.impl.DispatchTriggerImpl. *

* * @author Matija Petanjek * @see DispatchTrigger * @generated */ @ProviderType public interface DispatchTriggerModel extends BaseModel, ExternalReferenceCodeModel, MVCCModel, ShardedModel, StagedAuditedModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a dispatch trigger model instance should use the {@link DispatchTrigger} interface instead. */ /** * Returns the primary key of this dispatch trigger. * * @return the primary key of this dispatch trigger */ public long getPrimaryKey(); /** * Sets the primary key of this dispatch trigger. * * @param primaryKey the primary key of this dispatch trigger */ public void setPrimaryKey(long primaryKey); /** * Returns the mvcc version of this dispatch trigger. * * @return the mvcc version of this dispatch trigger */ @Override public long getMvccVersion(); /** * Sets the mvcc version of this dispatch trigger. * * @param mvccVersion the mvcc version of this dispatch trigger */ @Override public void setMvccVersion(long mvccVersion); /** * Returns the uuid of this dispatch trigger. * * @return the uuid of this dispatch trigger */ @AutoEscape @Override public String getUuid(); /** * Sets the uuid of this dispatch trigger. * * @param uuid the uuid of this dispatch trigger */ @Override public void setUuid(String uuid); /** * Returns the external reference code of this dispatch trigger. * * @return the external reference code of this dispatch trigger */ @AutoEscape @Override public String getExternalReferenceCode(); /** * Sets the external reference code of this dispatch trigger. * * @param externalReferenceCode the external reference code of this dispatch trigger */ @Override public void setExternalReferenceCode(String externalReferenceCode); /** * Returns the dispatch trigger ID of this dispatch trigger. * * @return the dispatch trigger ID of this dispatch trigger */ public long getDispatchTriggerId(); /** * Sets the dispatch trigger ID of this dispatch trigger. * * @param dispatchTriggerId the dispatch trigger ID of this dispatch trigger */ public void setDispatchTriggerId(long dispatchTriggerId); /** * Returns the company ID of this dispatch trigger. * * @return the company ID of this dispatch trigger */ @Override public long getCompanyId(); /** * Sets the company ID of this dispatch trigger. * * @param companyId the company ID of this dispatch trigger */ @Override public void setCompanyId(long companyId); /** * Returns the user ID of this dispatch trigger. * * @return the user ID of this dispatch trigger */ @Override public long getUserId(); /** * Sets the user ID of this dispatch trigger. * * @param userId the user ID of this dispatch trigger */ @Override public void setUserId(long userId); /** * Returns the user uuid of this dispatch trigger. * * @return the user uuid of this dispatch trigger */ @Override public String getUserUuid(); /** * Sets the user uuid of this dispatch trigger. * * @param userUuid the user uuid of this dispatch trigger */ @Override public void setUserUuid(String userUuid); /** * Returns the user name of this dispatch trigger. * * @return the user name of this dispatch trigger */ @AutoEscape @Override public String getUserName(); /** * Sets the user name of this dispatch trigger. * * @param userName the user name of this dispatch trigger */ @Override public void setUserName(String userName); /** * Returns the create date of this dispatch trigger. * * @return the create date of this dispatch trigger */ @Override public Date getCreateDate(); /** * Sets the create date of this dispatch trigger. * * @param createDate the create date of this dispatch trigger */ @Override public void setCreateDate(Date createDate); /** * Returns the modified date of this dispatch trigger. * * @return the modified date of this dispatch trigger */ @Override public Date getModifiedDate(); /** * Sets the modified date of this dispatch trigger. * * @param modifiedDate the modified date of this dispatch trigger */ @Override public void setModifiedDate(Date modifiedDate); /** * Returns the active of this dispatch trigger. * * @return the active of this dispatch trigger */ public boolean getActive(); /** * Returns true if this dispatch trigger is active. * * @return true if this dispatch trigger is active; false otherwise */ public boolean isActive(); /** * Sets whether this dispatch trigger is active. * * @param active the active of this dispatch trigger */ public void setActive(boolean active); /** * Returns the cron expression of this dispatch trigger. * * @return the cron expression of this dispatch trigger */ @AutoEscape public String getCronExpression(); /** * Sets the cron expression of this dispatch trigger. * * @param cronExpression the cron expression of this dispatch trigger */ public void setCronExpression(String cronExpression); /** * Returns the dispatch task cluster mode of this dispatch trigger. * * @return the dispatch task cluster mode of this dispatch trigger */ public int getDispatchTaskClusterMode(); /** * Sets the dispatch task cluster mode of this dispatch trigger. * * @param dispatchTaskClusterMode the dispatch task cluster mode of this dispatch trigger */ public void setDispatchTaskClusterMode(int dispatchTaskClusterMode); /** * Returns the dispatch task executor type of this dispatch trigger. * * @return the dispatch task executor type of this dispatch trigger */ @AutoEscape public String getDispatchTaskExecutorType(); /** * Sets the dispatch task executor type of this dispatch trigger. * * @param dispatchTaskExecutorType the dispatch task executor type of this dispatch trigger */ public void setDispatchTaskExecutorType(String dispatchTaskExecutorType); /** * Returns the dispatch task settings of this dispatch trigger. * * @return the dispatch task settings of this dispatch trigger */ @AutoEscape public String getDispatchTaskSettings(); /** * Sets the dispatch task settings of this dispatch trigger. * * @param dispatchTaskSettings the dispatch task settings of this dispatch trigger */ public void setDispatchTaskSettings(String dispatchTaskSettings); /** * Returns the end date of this dispatch trigger. * * @return the end date of this dispatch trigger */ public Date getEndDate(); /** * Sets the end date of this dispatch trigger. * * @param endDate the end date of this dispatch trigger */ public void setEndDate(Date endDate); /** * Returns the name of this dispatch trigger. * * @return the name of this dispatch trigger */ @AutoEscape public String getName(); /** * Sets the name of this dispatch trigger. * * @param name the name of this dispatch trigger */ public void setName(String name); /** * Returns the overlap allowed of this dispatch trigger. * * @return the overlap allowed of this dispatch trigger */ public boolean getOverlapAllowed(); /** * Returns true if this dispatch trigger is overlap allowed. * * @return true if this dispatch trigger is overlap allowed; false otherwise */ public boolean isOverlapAllowed(); /** * Sets whether this dispatch trigger is overlap allowed. * * @param overlapAllowed the overlap allowed of this dispatch trigger */ public void setOverlapAllowed(boolean overlapAllowed); /** * Returns the start date of this dispatch trigger. * * @return the start date of this dispatch trigger */ public Date getStartDate(); /** * Sets the start date of this dispatch trigger. * * @param startDate the start date of this dispatch trigger */ public void setStartDate(Date startDate); /** * Returns the system of this dispatch trigger. * * @return the system of this dispatch trigger */ public boolean getSystem(); /** * Returns true if this dispatch trigger is system. * * @return true if this dispatch trigger is system; false otherwise */ public boolean isSystem(); /** * Sets whether this dispatch trigger is system. * * @param system the system of this dispatch trigger */ public void setSystem(boolean system); /** * Returns the time zone ID of this dispatch trigger. * * @return the time zone ID of this dispatch trigger */ @AutoEscape public String getTimeZoneId(); /** * Sets the time zone ID of this dispatch trigger. * * @param timeZoneId the time zone ID of this dispatch trigger */ public void setTimeZoneId(String timeZoneId); @Override public DispatchTrigger cloneWithOriginalValues(); public default String toXmlString() { return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy