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.ContentTemplate 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.JsonFilter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
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 content template.", value = "ContentTemplate"
)
@io.swagger.v3.oas.annotations.media.Schema(
description = "Represents a content template.",
requiredProperties = {"contentStructureId", "name"}
)
@JsonFilter("Liferay.Vulcan")
@XmlRootElement(name = "ContentTemplate")
public class ContentTemplate implements Serializable {
public static ContentTemplate toDTO(String json) {
return ObjectMapperUtil.readValue(ContentTemplate.class, json);
}
public static ContentTemplate unsafeToDTO(String json) {
return ObjectMapperUtil.unsafeReadValue(ContentTemplate.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 content template 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 content template 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 content template 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 content template has a translation for."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String[] availableLanguages;
@JsonIgnore
private Supplier _availableLanguagesSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The ID of the `ContentStructure`."
)
public Long getContentStructureId() {
if (_contentStructureIdSupplier != null) {
contentStructureId = _contentStructureIdSupplier.get();
_contentStructureIdSupplier = null;
}
return contentStructureId;
}
public void setContentStructureId(Long contentStructureId) {
this.contentStructureId = contentStructureId;
_contentStructureIdSupplier = null;
}
@JsonIgnore
public void setContentStructureId(
UnsafeSupplier contentStructureIdUnsafeSupplier) {
_contentStructureIdSupplier = () -> {
try {
return contentStructureIdUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The ID of the `ContentStructure`.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
@NotNull
protected Long contentStructureId;
@JsonIgnore
private Supplier _contentStructureIdSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The content template'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 content template's creator.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Creator creator;
@JsonIgnore
private Supplier _creatorSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The content template'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 content template'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 the content template 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 the content template changed.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date dateModified;
@JsonIgnore
private Supplier _dateModifiedSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "the content template'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 content template'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 content template's 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 content template's 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 content template's ID."
)
public String getId() {
if (_idSupplier != null) {
id = _idSupplier.get();
_idSupplier = null;
}
return id;
}
public void setId(String 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 content template's ID.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String id;
@JsonIgnore
private Supplier _idSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "the content template'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 content template'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 content template's name."
)
@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 content template's name.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Map name_i18n;
@JsonIgnore
private Supplier> _name_i18nSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "the content template's programming language."
)
public String getProgrammingLanguage() {
if (_programmingLanguageSupplier != null) {
programmingLanguage = _programmingLanguageSupplier.get();
_programmingLanguageSupplier = null;
}
return programmingLanguage;
}
public void setProgrammingLanguage(String programmingLanguage) {
this.programmingLanguage = programmingLanguage;
_programmingLanguageSupplier = null;
}
@JsonIgnore
public void setProgrammingLanguage(
UnsafeSupplier programmingLanguageUnsafeSupplier) {
_programmingLanguageSupplier = () -> {
try {
return programmingLanguageUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "the content template's programming language.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String programmingLanguage;
@JsonIgnore
private Supplier _programmingLanguageSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The ID of the site to which the content template 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 the content template is scoped."
)
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Long siteId;
@JsonIgnore
private Supplier _siteIdSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The content template's script."
)
public String getTemplateScript() {
if (_templateScriptSupplier != null) {
templateScript = _templateScriptSupplier.get();
_templateScriptSupplier = null;
}
return templateScript;
}
public void setTemplateScript(String templateScript) {
this.templateScript = templateScript;
_templateScriptSupplier = null;
}
@JsonIgnore
public void setTemplateScript(
UnsafeSupplier templateScriptUnsafeSupplier) {
_templateScriptSupplier = () -> {
try {
return templateScriptUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The content template's script.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String templateScript;
@JsonIgnore
private Supplier _templateScriptSupplier;
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof ContentTemplate)) {
return false;
}
ContentTemplate contentTemplate = (ContentTemplate)object;
return Objects.equals(toString(), contentTemplate.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("]");
}
Long contentStructureId = getContentStructureId();
if (contentStructureId != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"contentStructureId\": ");
sb.append(contentStructureId);
}
Creator creator = getCreator();
if (creator != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"creator\": ");
sb.append(String.valueOf(creator));
}
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 id = getId();
if (id != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"id\": ");
sb.append("\"");
sb.append(_escape(id));
sb.append("\"");
}
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));
}
String programmingLanguage = getProgrammingLanguage();
if (programmingLanguage != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"programmingLanguage\": ");
sb.append("\"");
sb.append(_escape(programmingLanguage));
sb.append("\"");
}
Long siteId = getSiteId();
if (siteId != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"siteId\": ");
sb.append(siteId);
}
String templateScript = getTemplateScript();
if (templateScript != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"templateScript\": ");
sb.append("\"");
sb.append(_escape(templateScript));
sb.append("\"");
}
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.ContentTemplate",
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;
}