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.headless.delivery.dto.v1_0.Document 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.headless.delivery.dto.v1_0;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonFilter;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import com.liferay.petra.function.UnsafeSupplier;
import com.liferay.petra.string.StringBundler;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.vulcan.graphql.annotation.GraphQLField;
import com.liferay.portal.vulcan.graphql.annotation.GraphQLName;
import com.liferay.portal.vulcan.util.ObjectMapperUtil;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.Serializable;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.function.Supplier;
import javax.annotation.Generated;
import javax.validation.Valid;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Javier Gamarra
* @generated
*/
@Generated("")
@GraphQLName(
description = "Represents a Document Library file, storing binary and metadata information. Properties follow the [MediaObject](https://schema.org/MediaObject) specification.",
value = "Document"
)
@JsonFilter("Liferay.Vulcan")
@XmlRootElement(name = "Document")
public class Document implements Serializable {
public static Document toDTO(String json) {
return ObjectMapperUtil.readValue(Document.class, json);
}
public static Document unsafeToDTO(String json) {
return ObjectMapperUtil.unsafeReadValue(Document.class, json);
}
@Schema(
description = "Block of actions allowed by the user making the request."
)
@Valid
public Map> getActions() {
if (_actionsSupplier != null) {
actions = _actionsSupplier.get();
_actionsSupplier = null;
}
return actions;
}
public void setActions(Map> actions) {
this.actions = actions;
_actionsSupplier = null;
}
@JsonIgnore
public void setActions(
UnsafeSupplier>, Exception>
actionsUnsafeSupplier) {
_actionsSupplier = () -> {
try {
return actionsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "Block of actions allowed by the user making the request."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Map> actions;
@JsonIgnore
private Supplier>> _actionsSupplier;
@Schema(
description = "An array of images in several resolutions and sizes, created by the Adaptive Media framework."
)
@Valid
public AdaptedImage[] getAdaptedImages() {
if (_adaptedImagesSupplier != null) {
adaptedImages = _adaptedImagesSupplier.get();
_adaptedImagesSupplier = null;
}
return adaptedImages;
}
public void setAdaptedImages(AdaptedImage[] adaptedImages) {
this.adaptedImages = adaptedImages;
_adaptedImagesSupplier = null;
}
@JsonIgnore
public void setAdaptedImages(
UnsafeSupplier adaptedImagesUnsafeSupplier) {
_adaptedImagesSupplier = () -> {
try {
return adaptedImagesUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "An array of images in several resolutions and sizes, created by the Adaptive Media framework."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected AdaptedImage[] adaptedImages;
@JsonIgnore
private Supplier _adaptedImagesSupplier;
@Schema(description = "The document's average rating.")
@Valid
public AggregateRating getAggregateRating() {
if (_aggregateRatingSupplier != null) {
aggregateRating = _aggregateRatingSupplier.get();
_aggregateRatingSupplier = null;
}
return aggregateRating;
}
public void setAggregateRating(AggregateRating aggregateRating) {
this.aggregateRating = aggregateRating;
_aggregateRatingSupplier = null;
}
@JsonIgnore
public void setAggregateRating(
UnsafeSupplier
aggregateRatingUnsafeSupplier) {
_aggregateRatingSupplier = () -> {
try {
return aggregateRatingUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's average rating.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected AggregateRating aggregateRating;
@JsonIgnore
private Supplier _aggregateRatingSupplier;
@Schema(
description = "The key of the asset library to which the document is scoped."
)
public String getAssetLibraryKey() {
if (_assetLibraryKeySupplier != null) {
assetLibraryKey = _assetLibraryKeySupplier.get();
_assetLibraryKeySupplier = null;
}
return assetLibraryKey;
}
public void setAssetLibraryKey(String assetLibraryKey) {
this.assetLibraryKey = assetLibraryKey;
_assetLibraryKeySupplier = null;
}
@JsonIgnore
public void setAssetLibraryKey(
UnsafeSupplier assetLibraryKeyUnsafeSupplier) {
_assetLibraryKeySupplier = () -> {
try {
return assetLibraryKeyUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The key of the asset library to which the document is scoped."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String assetLibraryKey;
@JsonIgnore
private Supplier _assetLibraryKeySupplier;
@Schema(description = "The document's relative URL.")
public String getContentUrl() {
if (_contentUrlSupplier != null) {
contentUrl = _contentUrlSupplier.get();
_contentUrlSupplier = null;
}
return contentUrl;
}
public void setContentUrl(String contentUrl) {
this.contentUrl = contentUrl;
_contentUrlSupplier = null;
}
@JsonIgnore
public void setContentUrl(
UnsafeSupplier contentUrlUnsafeSupplier) {
_contentUrlSupplier = () -> {
try {
return contentUrlUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's relative URL.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String contentUrl;
@JsonIgnore
private Supplier _contentUrlSupplier;
@Schema(
description = "The optional field with the content of the document in Base64, can be embedded with nestedFields."
)
public String getContentValue() {
if (_contentValueSupplier != null) {
contentValue = _contentValueSupplier.get();
_contentValueSupplier = null;
}
return contentValue;
}
public void setContentValue(String contentValue) {
this.contentValue = contentValue;
_contentValueSupplier = null;
}
@JsonIgnore
public void setContentValue(
UnsafeSupplier contentValueUnsafeSupplier) {
_contentValueSupplier = () -> {
try {
return contentValueUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The optional field with the content of the document in Base64, can be embedded with nestedFields."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String contentValue;
@JsonIgnore
private Supplier _contentValueSupplier;
@Schema(description = "The document's creator.")
@Valid
public Creator getCreator() {
if (_creatorSupplier != null) {
creator = _creatorSupplier.get();
_creatorSupplier = null;
}
return creator;
}
public void setCreator(Creator creator) {
this.creator = creator;
_creatorSupplier = null;
}
@JsonIgnore
public void setCreator(
UnsafeSupplier creatorUnsafeSupplier) {
_creatorSupplier = () -> {
try {
return creatorUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's creator.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Creator creator;
@JsonIgnore
private Supplier _creatorSupplier;
@Schema(
description = "A list of the custom fields associated with the document."
)
@Valid
public CustomField[] getCustomFields() {
if (_customFieldsSupplier != null) {
customFields = _customFieldsSupplier.get();
_customFieldsSupplier = null;
}
return customFields;
}
public void setCustomFields(CustomField[] customFields) {
this.customFields = customFields;
_customFieldsSupplier = null;
}
@JsonIgnore
public void setCustomFields(
UnsafeSupplier customFieldsUnsafeSupplier) {
_customFieldsSupplier = () -> {
try {
return customFieldsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "A list of the custom fields associated with the document."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected CustomField[] customFields;
@JsonIgnore
private Supplier _customFieldsSupplier;
@Schema(description = "The document's creation date.")
public Date getDateCreated() {
if (_dateCreatedSupplier != null) {
dateCreated = _dateCreatedSupplier.get();
_dateCreatedSupplier = null;
}
return dateCreated;
}
public void setDateCreated(Date dateCreated) {
this.dateCreated = dateCreated;
_dateCreatedSupplier = null;
}
@JsonIgnore
public void setDateCreated(
UnsafeSupplier dateCreatedUnsafeSupplier) {
_dateCreatedSupplier = () -> {
try {
return dateCreatedUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's creation date.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date dateCreated;
@JsonIgnore
private Supplier _dateCreatedSupplier;
@Schema(description = "The last time a field of the document changed.")
public Date getDateModified() {
if (_dateModifiedSupplier != null) {
dateModified = _dateModifiedSupplier.get();
_dateModifiedSupplier = null;
}
return dateModified;
}
public void setDateModified(Date dateModified) {
this.dateModified = dateModified;
_dateModifiedSupplier = null;
}
@JsonIgnore
public void setDateModified(
UnsafeSupplier dateModifiedUnsafeSupplier) {
_dateModifiedSupplier = () -> {
try {
return dateModifiedUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The last time a field of the document changed."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date dateModified;
@JsonIgnore
private Supplier _dateModifiedSupplier;
@Schema(description = "The document's description.")
public String getDescription() {
if (_descriptionSupplier != null) {
description = _descriptionSupplier.get();
_descriptionSupplier = null;
}
return description;
}
public void setDescription(String description) {
this.description = description;
_descriptionSupplier = null;
}
@JsonIgnore
public void setDescription(
UnsafeSupplier descriptionUnsafeSupplier) {
_descriptionSupplier = () -> {
try {
return descriptionUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's description.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String description;
@JsonIgnore
private Supplier _descriptionSupplier;
@Schema(
description = "The ID of the `DocumentFolder` where this document is stored."
)
public Long getDocumentFolderId() {
if (_documentFolderIdSupplier != null) {
documentFolderId = _documentFolderIdSupplier.get();
_documentFolderIdSupplier = null;
}
return documentFolderId;
}
public void setDocumentFolderId(Long documentFolderId) {
this.documentFolderId = documentFolderId;
_documentFolderIdSupplier = null;
}
@JsonIgnore
public void setDocumentFolderId(
UnsafeSupplier documentFolderIdUnsafeSupplier) {
_documentFolderIdSupplier = () -> {
try {
return documentFolderIdUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The ID of the `DocumentFolder` where this document is stored."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Long documentFolderId;
@JsonIgnore
private Supplier _documentFolderIdSupplier;
@Schema
@Valid
public DocumentType getDocumentType() {
if (_documentTypeSupplier != null) {
documentType = _documentTypeSupplier.get();
_documentTypeSupplier = null;
}
return documentType;
}
public void setDocumentType(DocumentType documentType) {
this.documentType = documentType;
_documentTypeSupplier = null;
}
@JsonIgnore
public void setDocumentType(
UnsafeSupplier documentTypeUnsafeSupplier) {
_documentTypeSupplier = () -> {
try {
return documentTypeUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected DocumentType documentType;
@JsonIgnore
private Supplier _documentTypeSupplier;
@Schema(
description = "The document's content type (e.g., `application/pdf`, etc.)."
)
public String getEncodingFormat() {
if (_encodingFormatSupplier != null) {
encodingFormat = _encodingFormatSupplier.get();
_encodingFormatSupplier = null;
}
return encodingFormat;
}
public void setEncodingFormat(String encodingFormat) {
this.encodingFormat = encodingFormat;
_encodingFormatSupplier = null;
}
@JsonIgnore
public void setEncodingFormat(
UnsafeSupplier encodingFormatUnsafeSupplier) {
_encodingFormatSupplier = () -> {
try {
return encodingFormatUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The document's content type (e.g., `application/pdf`, etc.)."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String encodingFormat;
@JsonIgnore
private Supplier _encodingFormatSupplier;
@Schema(description = "The document's external reference code.")
public String getExternalReferenceCode() {
if (_externalReferenceCodeSupplier != null) {
externalReferenceCode = _externalReferenceCodeSupplier.get();
_externalReferenceCodeSupplier = null;
}
return externalReferenceCode;
}
public void setExternalReferenceCode(String externalReferenceCode) {
this.externalReferenceCode = externalReferenceCode;
_externalReferenceCodeSupplier = null;
}
@JsonIgnore
public void setExternalReferenceCode(
UnsafeSupplier externalReferenceCodeUnsafeSupplier) {
_externalReferenceCodeSupplier = () -> {
try {
return externalReferenceCodeUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's external reference code.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String externalReferenceCode;
@JsonIgnore
private Supplier _externalReferenceCodeSupplier;
@Schema(description = "The document's file extension.")
public String getFileExtension() {
if (_fileExtensionSupplier != null) {
fileExtension = _fileExtensionSupplier.get();
_fileExtensionSupplier = null;
}
return fileExtension;
}
public void setFileExtension(String fileExtension) {
this.fileExtension = fileExtension;
_fileExtensionSupplier = null;
}
@JsonIgnore
public void setFileExtension(
UnsafeSupplier fileExtensionUnsafeSupplier) {
_fileExtensionSupplier = () -> {
try {
return fileExtensionUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's file extension.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String fileExtension;
@JsonIgnore
private Supplier _fileExtensionSupplier;
@Schema(description = "The document's file name.")
public String getFileName() {
if (_fileNameSupplier != null) {
fileName = _fileNameSupplier.get();
_fileNameSupplier = null;
}
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
_fileNameSupplier = null;
}
@JsonIgnore
public void setFileName(
UnsafeSupplier fileNameUnsafeSupplier) {
_fileNameSupplier = () -> {
try {
return fileNameUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's file name.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String fileName;
@JsonIgnore
private Supplier _fileNameSupplier;
@Schema(description = "The document's file relative URL.")
public String getFriendlyUrlPath() {
if (_friendlyUrlPathSupplier != null) {
friendlyUrlPath = _friendlyUrlPathSupplier.get();
_friendlyUrlPathSupplier = null;
}
return friendlyUrlPath;
}
public void setFriendlyUrlPath(String friendlyUrlPath) {
this.friendlyUrlPath = friendlyUrlPath;
_friendlyUrlPathSupplier = null;
}
@JsonIgnore
public void setFriendlyUrlPath(
UnsafeSupplier friendlyUrlPathUnsafeSupplier) {
_friendlyUrlPathSupplier = () -> {
try {
return friendlyUrlPathUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's file relative URL.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String friendlyUrlPath;
@JsonIgnore
private Supplier _friendlyUrlPathSupplier;
@Schema(description = "The document's ID.")
public Long getId() {
if (_idSupplier != null) {
id = _idSupplier.get();
_idSupplier = null;
}
return id;
}
public void setId(Long id) {
this.id = id;
_idSupplier = null;
}
@JsonIgnore
public void setId(UnsafeSupplier idUnsafeSupplier) {
_idSupplier = () -> {
try {
return idUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's ID.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Long id;
@JsonIgnore
private Supplier _idSupplier;
@Schema(description = "A list of keywords describing the document.")
public String[] getKeywords() {
if (_keywordsSupplier != null) {
keywords = _keywordsSupplier.get();
_keywordsSupplier = null;
}
return keywords;
}
public void setKeywords(String[] keywords) {
this.keywords = keywords;
_keywordsSupplier = null;
}
@JsonIgnore
public void setKeywords(
UnsafeSupplier keywordsUnsafeSupplier) {
_keywordsSupplier = () -> {
try {
return keywordsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "A list of keywords describing the document.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String[] keywords;
@JsonIgnore
private Supplier _keywordsSupplier;
@Schema(description = "The number of comments on the document.")
public Integer getNumberOfComments() {
if (_numberOfCommentsSupplier != null) {
numberOfComments = _numberOfCommentsSupplier.get();
_numberOfCommentsSupplier = null;
}
return numberOfComments;
}
public void setNumberOfComments(Integer numberOfComments) {
this.numberOfComments = numberOfComments;
_numberOfCommentsSupplier = null;
}
@JsonIgnore
public void setNumberOfComments(
UnsafeSupplier numberOfCommentsUnsafeSupplier) {
_numberOfCommentsSupplier = () -> {
try {
return numberOfCommentsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The number of comments on the document.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Integer numberOfComments;
@JsonIgnore
private Supplier _numberOfCommentsSupplier;
@Schema(description = "A list of related contents to this document.")
@Valid
public RelatedContent[] getRelatedContents() {
if (_relatedContentsSupplier != null) {
relatedContents = _relatedContentsSupplier.get();
_relatedContentsSupplier = null;
}
return relatedContents;
}
public void setRelatedContents(RelatedContent[] relatedContents) {
this.relatedContents = relatedContents;
_relatedContentsSupplier = null;
}
@JsonIgnore
public void setRelatedContents(
UnsafeSupplier
relatedContentsUnsafeSupplier) {
_relatedContentsSupplier = () -> {
try {
return relatedContentsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "A list of related contents to this document.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected RelatedContent[] relatedContents;
@JsonIgnore
private Supplier _relatedContentsSupplier;
@Schema(
description = "A list of rendered documents, which results from using a display page to process the document and return HTML."
)
@Valid
public RenderedContent[] getRenderedContents() {
if (_renderedContentsSupplier != null) {
renderedContents = _renderedContentsSupplier.get();
_renderedContentsSupplier = null;
}
return renderedContents;
}
public void setRenderedContents(RenderedContent[] renderedContents) {
this.renderedContents = renderedContents;
_renderedContentsSupplier = null;
}
@JsonIgnore
public void setRenderedContents(
UnsafeSupplier
renderedContentsUnsafeSupplier) {
_renderedContentsSupplier = () -> {
try {
return renderedContentsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "A list of rendered documents, which results from using a display page to process the document and return HTML."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected RenderedContent[] renderedContents;
@JsonIgnore
private Supplier _renderedContentsSupplier;
@Schema(
description = "The ID of the site to which this document is scoped."
)
public Long getSiteId() {
if (_siteIdSupplier != null) {
siteId = _siteIdSupplier.get();
_siteIdSupplier = null;
}
return siteId;
}
public void setSiteId(Long siteId) {
this.siteId = siteId;
_siteIdSupplier = null;
}
@JsonIgnore
public void setSiteId(
UnsafeSupplier siteIdUnsafeSupplier) {
_siteIdSupplier = () -> {
try {
return siteIdUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The ID of the site to which this document is scoped."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Long siteId;
@JsonIgnore
private Supplier _siteIdSupplier;
@Schema(description = "The document's size in bytes.")
public Long getSizeInBytes() {
if (_sizeInBytesSupplier != null) {
sizeInBytes = _sizeInBytesSupplier.get();
_sizeInBytesSupplier = null;
}
return sizeInBytes;
}
public void setSizeInBytes(Long sizeInBytes) {
this.sizeInBytes = sizeInBytes;
_sizeInBytesSupplier = null;
}
@JsonIgnore
public void setSizeInBytes(
UnsafeSupplier sizeInBytesUnsafeSupplier) {
_sizeInBytesSupplier = () -> {
try {
return sizeInBytesUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's size in bytes.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Long sizeInBytes;
@JsonIgnore
private Supplier _sizeInBytesSupplier;
@Schema(description = "The categories associated with this document.")
@Valid
public TaxonomyCategoryBrief[] getTaxonomyCategoryBriefs() {
if (_taxonomyCategoryBriefsSupplier != null) {
taxonomyCategoryBriefs = _taxonomyCategoryBriefsSupplier.get();
_taxonomyCategoryBriefsSupplier = null;
}
return taxonomyCategoryBriefs;
}
public void setTaxonomyCategoryBriefs(
TaxonomyCategoryBrief[] taxonomyCategoryBriefs) {
this.taxonomyCategoryBriefs = taxonomyCategoryBriefs;
_taxonomyCategoryBriefsSupplier = null;
}
@JsonIgnore
public void setTaxonomyCategoryBriefs(
UnsafeSupplier
taxonomyCategoryBriefsUnsafeSupplier) {
_taxonomyCategoryBriefsSupplier = () -> {
try {
return taxonomyCategoryBriefsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The categories associated with this document.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected TaxonomyCategoryBrief[] taxonomyCategoryBriefs;
@JsonIgnore
private Supplier _taxonomyCategoryBriefsSupplier;
@Schema(
description = "A write-only field that adds `TaxonomyCategory` instances to the document."
)
public Long[] getTaxonomyCategoryIds() {
if (_taxonomyCategoryIdsSupplier != null) {
taxonomyCategoryIds = _taxonomyCategoryIdsSupplier.get();
_taxonomyCategoryIdsSupplier = null;
}
return taxonomyCategoryIds;
}
public void setTaxonomyCategoryIds(Long[] taxonomyCategoryIds) {
this.taxonomyCategoryIds = taxonomyCategoryIds;
_taxonomyCategoryIdsSupplier = null;
}
@JsonIgnore
public void setTaxonomyCategoryIds(
UnsafeSupplier taxonomyCategoryIdsUnsafeSupplier) {
_taxonomyCategoryIdsSupplier = () -> {
try {
return taxonomyCategoryIdsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "A write-only field that adds `TaxonomyCategory` instances to the document."
)
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
protected Long[] taxonomyCategoryIds;
@JsonIgnore
private Supplier _taxonomyCategoryIdsSupplier;
@Schema(description = "The document's main title/name.")
public String getTitle() {
if (_titleSupplier != null) {
title = _titleSupplier.get();
_titleSupplier = null;
}
return title;
}
public void setTitle(String title) {
this.title = title;
_titleSupplier = null;
}
@JsonIgnore
public void setTitle(
UnsafeSupplier titleUnsafeSupplier) {
_titleSupplier = () -> {
try {
return titleUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The document's main title/name.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String title;
@JsonIgnore
private Supplier _titleSupplier;
@JsonGetter("viewableBy")
@Schema(
description = "A write-only property that specifies the document's default permissions."
)
@Valid
public ViewableBy getViewableBy() {
if (_viewableBySupplier != null) {
viewableBy = _viewableBySupplier.get();
_viewableBySupplier = null;
}
return viewableBy;
}
@JsonIgnore
public String getViewableByAsString() {
ViewableBy viewableBy = getViewableBy();
if (viewableBy == null) {
return null;
}
return viewableBy.toString();
}
public void setViewableBy(ViewableBy viewableBy) {
this.viewableBy = viewableBy;
_viewableBySupplier = null;
}
@JsonIgnore
public void setViewableBy(
UnsafeSupplier viewableByUnsafeSupplier) {
_viewableBySupplier = () -> {
try {
return viewableByUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "A write-only property that specifies the document's default permissions."
)
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
protected ViewableBy viewableBy;
@JsonIgnore
private Supplier _viewableBySupplier;
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof Document)) {
return false;
}
Document document = (Document)object;
return Objects.equals(toString(), document.toString());
}
@Override
public int hashCode() {
String string = toString();
return string.hashCode();
}
public String toString() {
StringBundler sb = new StringBundler();
sb.append("{");
DateFormat liferayToJSONDateFormat = new SimpleDateFormat(
"yyyy-MM-dd'T'HH:mm:ss'Z'");
Map> actions = getActions();
if (actions != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"actions\": ");
sb.append(_toJSON(actions));
}
AdaptedImage[] adaptedImages = getAdaptedImages();
if (adaptedImages != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"adaptedImages\": ");
sb.append("[");
for (int i = 0; i < adaptedImages.length; i++) {
sb.append(String.valueOf(adaptedImages[i]));
if ((i + 1) < adaptedImages.length) {
sb.append(", ");
}
}
sb.append("]");
}
AggregateRating aggregateRating = getAggregateRating();
if (aggregateRating != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"aggregateRating\": ");
sb.append(String.valueOf(aggregateRating));
}
String assetLibraryKey = getAssetLibraryKey();
if (assetLibraryKey != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"assetLibraryKey\": ");
sb.append("\"");
sb.append(_escape(assetLibraryKey));
sb.append("\"");
}
String contentUrl = getContentUrl();
if (contentUrl != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"contentUrl\": ");
sb.append("\"");
sb.append(_escape(contentUrl));
sb.append("\"");
}
String contentValue = getContentValue();
if (contentValue != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"contentValue\": ");
sb.append("\"");
sb.append(_escape(contentValue));
sb.append("\"");
}
Creator creator = getCreator();
if (creator != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"creator\": ");
sb.append(String.valueOf(creator));
}
CustomField[] customFields = getCustomFields();
if (customFields != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"customFields\": ");
sb.append("[");
for (int i = 0; i < customFields.length; i++) {
sb.append(String.valueOf(customFields[i]));
if ((i + 1) < customFields.length) {
sb.append(", ");
}
}
sb.append("]");
}
Date dateCreated = getDateCreated();
if (dateCreated != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"dateCreated\": ");
sb.append("\"");
sb.append(liferayToJSONDateFormat.format(dateCreated));
sb.append("\"");
}
Date dateModified = getDateModified();
if (dateModified != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"dateModified\": ");
sb.append("\"");
sb.append(liferayToJSONDateFormat.format(dateModified));
sb.append("\"");
}
String description = getDescription();
if (description != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"description\": ");
sb.append("\"");
sb.append(_escape(description));
sb.append("\"");
}
Long documentFolderId = getDocumentFolderId();
if (documentFolderId != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"documentFolderId\": ");
sb.append(documentFolderId);
}
DocumentType documentType = getDocumentType();
if (documentType != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"documentType\": ");
sb.append(String.valueOf(documentType));
}
String encodingFormat = getEncodingFormat();
if (encodingFormat != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"encodingFormat\": ");
sb.append("\"");
sb.append(_escape(encodingFormat));
sb.append("\"");
}
String externalReferenceCode = getExternalReferenceCode();
if (externalReferenceCode != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"externalReferenceCode\": ");
sb.append("\"");
sb.append(_escape(externalReferenceCode));
sb.append("\"");
}
String fileExtension = getFileExtension();
if (fileExtension != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"fileExtension\": ");
sb.append("\"");
sb.append(_escape(fileExtension));
sb.append("\"");
}
String fileName = getFileName();
if (fileName != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"fileName\": ");
sb.append("\"");
sb.append(_escape(fileName));
sb.append("\"");
}
String friendlyUrlPath = getFriendlyUrlPath();
if (friendlyUrlPath != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"friendlyUrlPath\": ");
sb.append("\"");
sb.append(_escape(friendlyUrlPath));
sb.append("\"");
}
Long id = getId();
if (id != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"id\": ");
sb.append(id);
}
String[] keywords = getKeywords();
if (keywords != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"keywords\": ");
sb.append("[");
for (int i = 0; i < keywords.length; i++) {
sb.append("\"");
sb.append(_escape(keywords[i]));
sb.append("\"");
if ((i + 1) < keywords.length) {
sb.append(", ");
}
}
sb.append("]");
}
Integer numberOfComments = getNumberOfComments();
if (numberOfComments != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"numberOfComments\": ");
sb.append(numberOfComments);
}
RelatedContent[] relatedContents = getRelatedContents();
if (relatedContents != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"relatedContents\": ");
sb.append("[");
for (int i = 0; i < relatedContents.length; i++) {
sb.append(String.valueOf(relatedContents[i]));
if ((i + 1) < relatedContents.length) {
sb.append(", ");
}
}
sb.append("]");
}
RenderedContent[] renderedContents = getRenderedContents();
if (renderedContents != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"renderedContents\": ");
sb.append("[");
for (int i = 0; i < renderedContents.length; i++) {
sb.append(String.valueOf(renderedContents[i]));
if ((i + 1) < renderedContents.length) {
sb.append(", ");
}
}
sb.append("]");
}
Long siteId = getSiteId();
if (siteId != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"siteId\": ");
sb.append(siteId);
}
Long sizeInBytes = getSizeInBytes();
if (sizeInBytes != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"sizeInBytes\": ");
sb.append(sizeInBytes);
}
TaxonomyCategoryBrief[] taxonomyCategoryBriefs =
getTaxonomyCategoryBriefs();
if (taxonomyCategoryBriefs != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"taxonomyCategoryBriefs\": ");
sb.append("[");
for (int i = 0; i < taxonomyCategoryBriefs.length; i++) {
sb.append(String.valueOf(taxonomyCategoryBriefs[i]));
if ((i + 1) < taxonomyCategoryBriefs.length) {
sb.append(", ");
}
}
sb.append("]");
}
Long[] taxonomyCategoryIds = getTaxonomyCategoryIds();
if (taxonomyCategoryIds != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"taxonomyCategoryIds\": ");
sb.append("[");
for (int i = 0; i < taxonomyCategoryIds.length; i++) {
sb.append(taxonomyCategoryIds[i]);
if ((i + 1) < taxonomyCategoryIds.length) {
sb.append(", ");
}
}
sb.append("]");
}
String title = getTitle();
if (title != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"title\": ");
sb.append("\"");
sb.append(_escape(title));
sb.append("\"");
}
ViewableBy viewableBy = getViewableBy();
if (viewableBy != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"viewableBy\": ");
sb.append("\"");
sb.append(viewableBy);
sb.append("\"");
}
sb.append("}");
return sb.toString();
}
@Schema(
accessMode = Schema.AccessMode.READ_ONLY,
defaultValue = "com.liferay.headless.delivery.dto.v1_0.Document",
name = "x-class-name"
)
public String xClassName;
@GraphQLName("ViewableBy")
public static enum ViewableBy {
ANYONE("Anyone"), MEMBERS("Members"), OWNER("Owner");
@JsonCreator
public static ViewableBy create(String value) {
if ((value == null) || value.equals("")) {
return null;
}
for (ViewableBy viewableBy : values()) {
if (Objects.equals(viewableBy.getValue(), value)) {
return viewableBy;
}
}
throw new IllegalArgumentException("Invalid enum value: " + value);
}
@JsonValue
public String getValue() {
return _value;
}
@Override
public String toString() {
return _value;
}
private ViewableBy(String value) {
_value = value;
}
private final String _value;
}
private static String _escape(Object object) {
return StringUtil.replace(
String.valueOf(object), _JSON_ESCAPE_STRINGS[0],
_JSON_ESCAPE_STRINGS[1]);
}
private static boolean _isArray(Object value) {
if (value == null) {
return false;
}
Class> clazz = value.getClass();
return clazz.isArray();
}
private static String _toJSON(Map map) {
StringBuilder sb = new StringBuilder("{");
@SuppressWarnings("unchecked")
Set set = map.entrySet();
@SuppressWarnings("unchecked")
Iterator> iterator = set.iterator();
while (iterator.hasNext()) {
Map.Entry entry = iterator.next();
sb.append("\"");
sb.append(_escape(entry.getKey()));
sb.append("\": ");
Object value = entry.getValue();
if (_isArray(value)) {
sb.append("[");
Object[] valueArray = (Object[])value;
for (int i = 0; i < valueArray.length; i++) {
if (valueArray[i] instanceof String) {
sb.append("\"");
sb.append(valueArray[i]);
sb.append("\"");
}
else {
sb.append(valueArray[i]);
}
if ((i + 1) < valueArray.length) {
sb.append(", ");
}
}
sb.append("]");
}
else if (value instanceof Map) {
sb.append(_toJSON((Map)value));
}
else if (value instanceof String) {
sb.append("\"");
sb.append(_escape(value));
sb.append("\"");
}
else {
sb.append(value);
}
if (iterator.hasNext()) {
sb.append(", ");
}
}
sb.append("}");
return sb.toString();
}
private static final String[][] _JSON_ESCAPE_STRINGS = {
{"\\", "\"", "\b", "\f", "\n", "\r", "\t"},
{"\\\\", "\\\"", "\\b", "\\f", "\\n", "\\r", "\\t"}
};
private Map _extendedProperties;
}