com.liferay.fragment.model.FragmentEntryVersionModel 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.fragment.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.GroupedModel;
import com.liferay.portal.kernel.model.MVCCModel;
import com.liferay.portal.kernel.model.ShardedModel;
import com.liferay.portal.kernel.model.WorkflowedModel;
import com.liferay.portal.kernel.model.change.tracking.CTModel;
import com.liferay.portal.kernel.model.version.VersionModel;
import java.util.Date;
import org.osgi.annotation.versioning.ProviderType;
/**
* The base model interface for the FragmentEntryVersion service. Represents a row in the "FragmentEntryVersion" database table, with each column mapped to a property of this class.
*
*
* This interface and its corresponding implementation com.liferay.fragment.model.impl.FragmentEntryVersionModelImpl
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.fragment.model.impl.FragmentEntryVersionImpl
.
*
*
* @author Brian Wing Shun Chan
* @see FragmentEntryVersion
* @generated
*/
@ProviderType
public interface FragmentEntryVersionModel
extends BaseModel, CTModel,
ExternalReferenceCodeModel, GroupedModel, MVCCModel, ShardedModel,
VersionModel, WorkflowedModel {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. All methods that expect a fragment entry version model instance should use the {@link FragmentEntryVersion} interface instead.
*/
/**
* Returns the primary key of this fragment entry version.
*
* @return the primary key of this fragment entry version
*/
@Override
public long getPrimaryKey();
/**
* Sets the primary key of this fragment entry version.
*
* @param primaryKey the primary key of this fragment entry version
*/
@Override
public void setPrimaryKey(long primaryKey);
/**
* Returns the mvcc version of this fragment entry version.
*
* @return the mvcc version of this fragment entry version
*/
@Override
public long getMvccVersion();
/**
* Sets the mvcc version of this fragment entry version.
*
* @param mvccVersion the mvcc version of this fragment entry version
*/
@Override
public void setMvccVersion(long mvccVersion);
/**
* Returns the ct collection ID of this fragment entry version.
*
* @return the ct collection ID of this fragment entry version
*/
@Override
public long getCtCollectionId();
/**
* Sets the ct collection ID of this fragment entry version.
*
* @param ctCollectionId the ct collection ID of this fragment entry version
*/
@Override
public void setCtCollectionId(long ctCollectionId);
/**
* Returns the fragment entry version ID of this fragment entry version.
*
* @return the fragment entry version ID of this fragment entry version
*/
public long getFragmentEntryVersionId();
/**
* Sets the fragment entry version ID of this fragment entry version.
*
* @param fragmentEntryVersionId the fragment entry version ID of this fragment entry version
*/
public void setFragmentEntryVersionId(long fragmentEntryVersionId);
/**
* Returns the version of this fragment entry version.
*
* @return the version of this fragment entry version
*/
@Override
public int getVersion();
/**
* Sets the version of this fragment entry version.
*
* @param version the version of this fragment entry version
*/
@Override
public void setVersion(int version);
/**
* Returns the uuid of this fragment entry version.
*
* @return the uuid of this fragment entry version
*/
@AutoEscape
public String getUuid();
/**
* Sets the uuid of this fragment entry version.
*
* @param uuid the uuid of this fragment entry version
*/
public void setUuid(String uuid);
/**
* Returns the external reference code of this fragment entry version.
*
* @return the external reference code of this fragment entry version
*/
@AutoEscape
@Override
public String getExternalReferenceCode();
/**
* Sets the external reference code of this fragment entry version.
*
* @param externalReferenceCode the external reference code of this fragment entry version
*/
@Override
public void setExternalReferenceCode(String externalReferenceCode);
/**
* Returns the fragment entry ID of this fragment entry version.
*
* @return the fragment entry ID of this fragment entry version
*/
public long getFragmentEntryId();
/**
* Sets the fragment entry ID of this fragment entry version.
*
* @param fragmentEntryId the fragment entry ID of this fragment entry version
*/
public void setFragmentEntryId(long fragmentEntryId);
/**
* Returns the group ID of this fragment entry version.
*
* @return the group ID of this fragment entry version
*/
@Override
public long getGroupId();
/**
* Sets the group ID of this fragment entry version.
*
* @param groupId the group ID of this fragment entry version
*/
@Override
public void setGroupId(long groupId);
/**
* Returns the company ID of this fragment entry version.
*
* @return the company ID of this fragment entry version
*/
@Override
public long getCompanyId();
/**
* Sets the company ID of this fragment entry version.
*
* @param companyId the company ID of this fragment entry version
*/
@Override
public void setCompanyId(long companyId);
/**
* Returns the user ID of this fragment entry version.
*
* @return the user ID of this fragment entry version
*/
@Override
public long getUserId();
/**
* Sets the user ID of this fragment entry version.
*
* @param userId the user ID of this fragment entry version
*/
@Override
public void setUserId(long userId);
/**
* Returns the user uuid of this fragment entry version.
*
* @return the user uuid of this fragment entry version
*/
@Override
public String getUserUuid();
/**
* Sets the user uuid of this fragment entry version.
*
* @param userUuid the user uuid of this fragment entry version
*/
@Override
public void setUserUuid(String userUuid);
/**
* Returns the user name of this fragment entry version.
*
* @return the user name of this fragment entry version
*/
@AutoEscape
@Override
public String getUserName();
/**
* Sets the user name of this fragment entry version.
*
* @param userName the user name of this fragment entry version
*/
@Override
public void setUserName(String userName);
/**
* Returns the create date of this fragment entry version.
*
* @return the create date of this fragment entry version
*/
@Override
public Date getCreateDate();
/**
* Sets the create date of this fragment entry version.
*
* @param createDate the create date of this fragment entry version
*/
@Override
public void setCreateDate(Date createDate);
/**
* Returns the modified date of this fragment entry version.
*
* @return the modified date of this fragment entry version
*/
@Override
public Date getModifiedDate();
/**
* Sets the modified date of this fragment entry version.
*
* @param modifiedDate the modified date of this fragment entry version
*/
@Override
public void setModifiedDate(Date modifiedDate);
/**
* Returns the fragment collection ID of this fragment entry version.
*
* @return the fragment collection ID of this fragment entry version
*/
public long getFragmentCollectionId();
/**
* Sets the fragment collection ID of this fragment entry version.
*
* @param fragmentCollectionId the fragment collection ID of this fragment entry version
*/
public void setFragmentCollectionId(long fragmentCollectionId);
/**
* Returns the fragment entry key of this fragment entry version.
*
* @return the fragment entry key of this fragment entry version
*/
@AutoEscape
public String getFragmentEntryKey();
/**
* Sets the fragment entry key of this fragment entry version.
*
* @param fragmentEntryKey the fragment entry key of this fragment entry version
*/
public void setFragmentEntryKey(String fragmentEntryKey);
/**
* Returns the name of this fragment entry version.
*
* @return the name of this fragment entry version
*/
@AutoEscape
public String getName();
/**
* Sets the name of this fragment entry version.
*
* @param name the name of this fragment entry version
*/
public void setName(String name);
/**
* Returns the css of this fragment entry version.
*
* @return the css of this fragment entry version
*/
@AutoEscape
public String getCss();
/**
* Sets the css of this fragment entry version.
*
* @param css the css of this fragment entry version
*/
public void setCss(String css);
/**
* Returns the html of this fragment entry version.
*
* @return the html of this fragment entry version
*/
@AutoEscape
public String getHtml();
/**
* Sets the html of this fragment entry version.
*
* @param html the html of this fragment entry version
*/
public void setHtml(String html);
/**
* Returns the js of this fragment entry version.
*
* @return the js of this fragment entry version
*/
@AutoEscape
public String getJs();
/**
* Sets the js of this fragment entry version.
*
* @param js the js of this fragment entry version
*/
public void setJs(String js);
/**
* Returns the cacheable of this fragment entry version.
*
* @return the cacheable of this fragment entry version
*/
public boolean getCacheable();
/**
* Returns true
if this fragment entry version is cacheable.
*
* @return true
if this fragment entry version is cacheable; false
otherwise
*/
public boolean isCacheable();
/**
* Sets whether this fragment entry version is cacheable.
*
* @param cacheable the cacheable of this fragment entry version
*/
public void setCacheable(boolean cacheable);
/**
* Returns the configuration of this fragment entry version.
*
* @return the configuration of this fragment entry version
*/
@AutoEscape
public String getConfiguration();
/**
* Sets the configuration of this fragment entry version.
*
* @param configuration the configuration of this fragment entry version
*/
public void setConfiguration(String configuration);
/**
* Returns the icon of this fragment entry version.
*
* @return the icon of this fragment entry version
*/
@AutoEscape
public String getIcon();
/**
* Sets the icon of this fragment entry version.
*
* @param icon the icon of this fragment entry version
*/
public void setIcon(String icon);
/**
* Returns the preview file entry ID of this fragment entry version.
*
* @return the preview file entry ID of this fragment entry version
*/
public long getPreviewFileEntryId();
/**
* Sets the preview file entry ID of this fragment entry version.
*
* @param previewFileEntryId the preview file entry ID of this fragment entry version
*/
public void setPreviewFileEntryId(long previewFileEntryId);
/**
* Returns the read only of this fragment entry version.
*
* @return the read only of this fragment entry version
*/
public boolean getReadOnly();
/**
* Returns true
if this fragment entry version is read only.
*
* @return true
if this fragment entry version is read only; false
otherwise
*/
public boolean isReadOnly();
/**
* Sets whether this fragment entry version is read only.
*
* @param readOnly the read only of this fragment entry version
*/
public void setReadOnly(boolean readOnly);
/**
* Returns the type of this fragment entry version.
*
* @return the type of this fragment entry version
*/
public int getType();
/**
* Sets the type of this fragment entry version.
*
* @param type the type of this fragment entry version
*/
public void setType(int type);
/**
* Returns the type options of this fragment entry version.
*
* @return the type options of this fragment entry version
*/
@AutoEscape
public String getTypeOptions();
/**
* Sets the type options of this fragment entry version.
*
* @param typeOptions the type options of this fragment entry version
*/
public void setTypeOptions(String typeOptions);
/**
* Returns the last publish date of this fragment entry version.
*
* @return the last publish date of this fragment entry version
*/
public Date getLastPublishDate();
/**
* Sets the last publish date of this fragment entry version.
*
* @param lastPublishDate the last publish date of this fragment entry version
*/
public void setLastPublishDate(Date lastPublishDate);
/**
* Returns the status of this fragment entry version.
*
* @return the status of this fragment entry version
*/
@Override
public int getStatus();
/**
* Sets the status of this fragment entry version.
*
* @param status the status of this fragment entry version
*/
@Override
public void setStatus(int status);
/**
* Returns the status by user ID of this fragment entry version.
*
* @return the status by user ID of this fragment entry version
*/
@Override
public long getStatusByUserId();
/**
* Sets the status by user ID of this fragment entry version.
*
* @param statusByUserId the status by user ID of this fragment entry version
*/
@Override
public void setStatusByUserId(long statusByUserId);
/**
* Returns the status by user uuid of this fragment entry version.
*
* @return the status by user uuid of this fragment entry version
*/
@Override
public String getStatusByUserUuid();
/**
* Sets the status by user uuid of this fragment entry version.
*
* @param statusByUserUuid the status by user uuid of this fragment entry version
*/
@Override
public void setStatusByUserUuid(String statusByUserUuid);
/**
* Returns the status by user name of this fragment entry version.
*
* @return the status by user name of this fragment entry version
*/
@AutoEscape
@Override
public String getStatusByUserName();
/**
* Sets the status by user name of this fragment entry version.
*
* @param statusByUserName the status by user name of this fragment entry version
*/
@Override
public void setStatusByUserName(String statusByUserName);
/**
* Returns the status date of this fragment entry version.
*
* @return the status date of this fragment entry version
*/
@Override
public Date getStatusDate();
/**
* Sets the status date of this fragment entry version.
*
* @param statusDate the status date of this fragment entry version
*/
@Override
public void setStatusDate(Date statusDate);
/**
* Returns true
if this fragment entry version is approved.
*
* @return true
if this fragment entry version is approved; false
otherwise
*/
@Override
public boolean isApproved();
/**
* Returns true
if this fragment entry version is denied.
*
* @return true
if this fragment entry version is denied; false
otherwise
*/
@Override
public boolean isDenied();
/**
* Returns true
if this fragment entry version is a draft.
*
* @return true
if this fragment entry version is a draft; false
otherwise
*/
@Override
public boolean isDraft();
/**
* Returns true
if this fragment entry version is expired.
*
* @return true
if this fragment entry version is expired; false
otherwise
*/
@Override
public boolean isExpired();
/**
* Returns true
if this fragment entry version is inactive.
*
* @return true
if this fragment entry version is inactive; false
otherwise
*/
@Override
public boolean isInactive();
/**
* Returns true
if this fragment entry version is incomplete.
*
* @return true
if this fragment entry version is incomplete; false
otherwise
*/
@Override
public boolean isIncomplete();
/**
* Returns true
if this fragment entry version is pending.
*
* @return true
if this fragment entry version is pending; false
otherwise
*/
@Override
public boolean isPending();
/**
* Returns true
if this fragment entry version is scheduled.
*
* @return true
if this fragment entry version is scheduled; false
otherwise
*/
@Override
public boolean isScheduled();
@Override
public FragmentEntryVersion cloneWithOriginalValues();
public default String toXmlString() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy