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.DocumentMetadataSet Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2024 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.JsonFilter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.liferay.data.engine.rest.dto.v2_0.DataDefinitionField;
import com.liferay.data.engine.rest.dto.v2_0.DataLayout;
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 jakarta.annotation.Generated;
import jakarta.validation.Valid;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
import jakarta.xml.bind.annotation.XmlRootElement;
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;
/**
* @author Javier Gamarra
* @generated
*/
@Generated("")
@GraphQLName(
description = "Represents a Document Metadata Set.",
value = "DocumentMetadataSet"
)
@io.swagger.v3.oas.annotations.media.Schema(
description = "Represents a Document Metadata Set.",
requiredProperties = {
"availableLanguages", "dataDefinitionFields", "dataLayout", "name"
}
)
@JsonFilter("Liferay.Vulcan")
@XmlRootElement(name = "DocumentMetadataSet")
public class DocumentMetadataSet implements Serializable {
public static DocumentMetadataSet toDTO(String json) {
return ObjectMapperUtil.readValue(DocumentMetadataSet.class, json);
}
public static DocumentMetadataSet unsafeToDTO(String json) {
return ObjectMapperUtil.unsafeReadValue(
DocumentMetadataSet.class, json);
}
@io.swagger.v3.oas.annotations.media.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;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The key of the asset library to which the Document Metadata Set 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 Metadata Set is scoped."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String assetLibraryKey;
@JsonIgnore
private Supplier _assetLibraryKeySupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The list of languages the navigation menu item has a translation for."
)
public String[] getAvailableLanguages() {
if (_availableLanguagesSupplier != null) {
availableLanguages = _availableLanguagesSupplier.get();
_availableLanguagesSupplier = null;
}
return availableLanguages;
}
public void setAvailableLanguages(String[] availableLanguages) {
this.availableLanguages = availableLanguages;
_availableLanguagesSupplier = null;
}
@JsonIgnore
public void setAvailableLanguages(
UnsafeSupplier availableLanguagesUnsafeSupplier) {
_availableLanguagesSupplier = () -> {
try {
return availableLanguagesUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The list of languages the navigation menu item has a translation for."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
@NotNull
protected String[] availableLanguages;
@JsonIgnore
private Supplier _availableLanguagesSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The list of fields that store the structured content's information."
)
@Valid
public DataDefinitionField[] getDataDefinitionFields() {
if (_dataDefinitionFieldsSupplier != null) {
dataDefinitionFields = _dataDefinitionFieldsSupplier.get();
_dataDefinitionFieldsSupplier = null;
}
return dataDefinitionFields;
}
public void setDataDefinitionFields(
DataDefinitionField[] dataDefinitionFields) {
this.dataDefinitionFields = dataDefinitionFields;
_dataDefinitionFieldsSupplier = null;
}
@JsonIgnore
public void setDataDefinitionFields(
UnsafeSupplier
dataDefinitionFieldsUnsafeSupplier) {
_dataDefinitionFieldsSupplier = () -> {
try {
return dataDefinitionFieldsUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The list of fields that store the structured content's information."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
@NotNull
protected DataDefinitionField[] dataDefinitionFields;
@JsonIgnore
private Supplier _dataDefinitionFieldsSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The layout of the document data definition type fields."
)
@Valid
public DataLayout getDataLayout() {
if (_dataLayoutSupplier != null) {
dataLayout = _dataLayoutSupplier.get();
_dataLayoutSupplier = null;
}
return dataLayout;
}
public void setDataLayout(DataLayout dataLayout) {
this.dataLayout = dataLayout;
_dataLayoutSupplier = null;
}
@JsonIgnore
public void setDataLayout(
UnsafeSupplier dataLayoutUnsafeSupplier) {
_dataLayoutSupplier = () -> {
try {
return dataLayoutUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The layout of the document data definition type fields."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
@NotNull
protected DataLayout dataLayout;
@JsonIgnore
private Supplier _dataLayoutSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The Document Metadata Set'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 Metadata Set's creation date.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date dateCreated;
@JsonIgnore
private Supplier _dateCreatedSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The last time a field of the Document Metadata Set 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 Metadata Set changed."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date dateModified;
@JsonIgnore
private Supplier _dateModifiedSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The Document Metadata Set'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 Metadata Set's description.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String description;
@JsonIgnore
private Supplier _descriptionSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The localized Document Metadata Set descriptions."
)
@Valid
public Map getDescription_i18n() {
if (_description_i18nSupplier != null) {
description_i18n = _description_i18nSupplier.get();
_description_i18nSupplier = null;
}
return description_i18n;
}
public void setDescription_i18n(Map description_i18n) {
this.description_i18n = description_i18n;
_description_i18nSupplier = null;
}
@JsonIgnore
public void setDescription_i18n(
UnsafeSupplier, Exception>
description_i18nUnsafeSupplier) {
_description_i18nSupplier = () -> {
try {
return description_i18nUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "The localized Document Metadata Set descriptions."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Map description_i18n;
@JsonIgnore
private Supplier> _description_i18nSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The Document Metadata Set'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 Metadata Set's external reference code."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String externalReferenceCode;
@JsonIgnore
private Supplier _externalReferenceCodeSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The ID of the Document Metadata Set."
)
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 ID of the Document Metadata Set.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Long id;
@JsonIgnore
private Supplier _idSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The Document Metadata Set's name."
)
public String getName() {
if (_nameSupplier != null) {
name = _nameSupplier.get();
_nameSupplier = null;
}
return name;
}
public void setName(String name) {
this.name = name;
_nameSupplier = null;
}
@JsonIgnore
public void setName(UnsafeSupplier nameUnsafeSupplier) {
_nameSupplier = () -> {
try {
return nameUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The Document Metadata Set's name.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
@NotEmpty
protected String name;
@JsonIgnore
private Supplier _nameSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "the localized Document Metadata Set's names."
)
@Valid
public Map getName_i18n() {
if (_name_i18nSupplier != null) {
name_i18n = _name_i18nSupplier.get();
_name_i18nSupplier = null;
}
return name_i18n;
}
public void setName_i18n(Map name_i18n) {
this.name_i18n = name_i18n;
_name_i18nSupplier = null;
}
@JsonIgnore
public void setName_i18n(
UnsafeSupplier, Exception>
name_i18nUnsafeSupplier) {
_name_i18nSupplier = () -> {
try {
return name_i18nUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "the localized Document Metadata Set's names.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Map name_i18n;
@JsonIgnore
private Supplier> _name_i18nSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The ID of the site to which this Document Metadata Set 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 Metadata Set is scoped."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Long siteId;
@JsonIgnore
private Supplier _siteIdSupplier;
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof DocumentMetadataSet)) {
return false;
}
DocumentMetadataSet documentMetadataSet = (DocumentMetadataSet)object;
return Objects.equals(toString(), documentMetadataSet.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));
}
String assetLibraryKey = getAssetLibraryKey();
if (assetLibraryKey != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"assetLibraryKey\": ");
sb.append("\"");
sb.append(_escape(assetLibraryKey));
sb.append("\"");
}
String[] availableLanguages = getAvailableLanguages();
if (availableLanguages != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"availableLanguages\": ");
sb.append("[");
for (int i = 0; i < availableLanguages.length; i++) {
sb.append("\"");
sb.append(_escape(availableLanguages[i]));
sb.append("\"");
if ((i + 1) < availableLanguages.length) {
sb.append(", ");
}
}
sb.append("]");
}
DataDefinitionField[] dataDefinitionFields = getDataDefinitionFields();
if (dataDefinitionFields != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"dataDefinitionFields\": ");
sb.append("[");
for (int i = 0; i < dataDefinitionFields.length; i++) {
sb.append(dataDefinitionFields[i]);
if ((i + 1) < dataDefinitionFields.length) {
sb.append(", ");
}
}
sb.append("]");
}
DataLayout dataLayout = getDataLayout();
if (dataLayout != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"dataLayout\": ");
sb.append(dataLayout);
}
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("\"");
}
Map description_i18n = getDescription_i18n();
if (description_i18n != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"description_i18n\": ");
sb.append(_toJSON(description_i18n));
}
String externalReferenceCode = getExternalReferenceCode();
if (externalReferenceCode != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"externalReferenceCode\": ");
sb.append("\"");
sb.append(_escape(externalReferenceCode));
sb.append("\"");
}
Long id = getId();
if (id != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"id\": ");
sb.append(id);
}
String name = getName();
if (name != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"name\": ");
sb.append("\"");
sb.append(_escape(name));
sb.append("\"");
}
Map name_i18n = getName_i18n();
if (name_i18n != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"name_i18n\": ");
sb.append(_toJSON(name_i18n));
}
Long siteId = getSiteId();
if (siteId != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"siteId\": ");
sb.append(siteId);
}
sb.append("}");
return sb.toString();
}
@io.swagger.v3.oas.annotations.media.Schema(
accessMode = io.swagger.v3.oas.annotations.media.Schema.AccessMode.READ_ONLY,
defaultValue = "com.liferay.headless.delivery.dto.v1_0.DocumentMetadataSet",
name = "x-class-name"
)
public String xClassName;
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 Map) {
sb.append(_toJSON((Map)valueArray[i]));
}
else 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;
}