
com.liferay.headless.delivery.dto.v1_0.DisplayPageTemplate Maven / Gradle / Ivy
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.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.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
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 Display Page template.",
value = "DisplayPageTemplate"
)
@JsonFilter("Liferay.Vulcan")
@XmlRootElement(name = "DisplayPageTemplate")
public class DisplayPageTemplate implements Serializable {
public static DisplayPageTemplate toDTO(String json) {
return ObjectMapperUtil.readValue(DisplayPageTemplate.class, json);
}
public static DisplayPageTemplate unsafeToDTO(String json) {
return ObjectMapperUtil.unsafeReadValue(
DisplayPageTemplate.class, json);
}
@io.swagger.v3.oas.annotations.media.Schema(
description = "The display page template's content subtype."
)
@Valid
public ContentSubtype getContentSubtype() {
if (_contentSubtypeSupplier != null) {
contentSubtype = _contentSubtypeSupplier.get();
_contentSubtypeSupplier = null;
}
return contentSubtype;
}
public void setContentSubtype(ContentSubtype contentSubtype) {
this.contentSubtype = contentSubtype;
_contentSubtypeSupplier = null;
}
@JsonIgnore
public void setContentSubtype(
UnsafeSupplier
contentSubtypeUnsafeSupplier) {
_contentSubtypeSupplier = () -> {
try {
return contentSubtypeUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The display page template's content subtype.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected ContentSubtype contentSubtype;
@JsonIgnore
private Supplier _contentSubtypeSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The type of content."
)
@Valid
public ContentType getContentType() {
if (_contentTypeSupplier != null) {
contentType = _contentTypeSupplier.get();
_contentTypeSupplier = null;
}
return contentType;
}
public void setContentType(ContentType contentType) {
this.contentType = contentType;
_contentTypeSupplier = null;
}
@JsonIgnore
public void setContentType(
UnsafeSupplier contentTypeUnsafeSupplier) {
_contentTypeSupplier = () -> {
try {
return contentTypeUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The type of content.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected ContentType contentType;
@JsonIgnore
private Supplier _contentTypeSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "Specifies if the page template should be the default for the given content type/subtype."
)
public Boolean getDefaultTemplate() {
if (_defaultTemplateSupplier != null) {
defaultTemplate = _defaultTemplateSupplier.get();
_defaultTemplateSupplier = null;
}
return defaultTemplate;
}
public void setDefaultTemplate(Boolean defaultTemplate) {
this.defaultTemplate = defaultTemplate;
_defaultTemplateSupplier = null;
}
@JsonIgnore
public void setDefaultTemplate(
UnsafeSupplier defaultTemplateUnsafeSupplier) {
_defaultTemplateSupplier = () -> {
try {
return defaultTemplateUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(
description = "Specifies if the page template should be the default for the given content type/subtype."
)
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Boolean defaultTemplate;
@JsonIgnore
private Supplier _defaultTemplateSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The display page template's key."
)
public String getKey() {
if (_keySupplier != null) {
key = _keySupplier.get();
_keySupplier = null;
}
return key;
}
public void setKey(String key) {
this.key = key;
_keySupplier = null;
}
@JsonIgnore
public void setKey(UnsafeSupplier keyUnsafeSupplier) {
_keySupplier = () -> {
try {
return keyUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The display page template's key.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String key;
@JsonIgnore
private Supplier _keySupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The display page 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 display page template's name.")
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected String name;
@JsonIgnore
private Supplier _nameSupplier;
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof DisplayPageTemplate)) {
return false;
}
DisplayPageTemplate displayPageTemplate = (DisplayPageTemplate)object;
return Objects.equals(toString(), displayPageTemplate.toString());
}
@Override
public int hashCode() {
String string = toString();
return string.hashCode();
}
public String toString() {
StringBundler sb = new StringBundler();
sb.append("{");
ContentSubtype contentSubtype = getContentSubtype();
if (contentSubtype != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"contentSubtype\": ");
sb.append(String.valueOf(contentSubtype));
}
ContentType contentType = getContentType();
if (contentType != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"contentType\": ");
sb.append(String.valueOf(contentType));
}
Boolean defaultTemplate = getDefaultTemplate();
if (defaultTemplate != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"defaultTemplate\": ");
sb.append(defaultTemplate);
}
String key = getKey();
if (key != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"key\": ");
sb.append("\"");
sb.append(_escape(key));
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("\"");
}
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.DisplayPageTemplate",
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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy