
com.liferay.headless.delivery.dto.v1_0.CreatorStatistics 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.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 = "Detailed info of the creator.", value = "CreatorStatistics"
)
@JsonFilter("Liferay.Vulcan")
@XmlRootElement(name = "CreatorStatistics")
public class CreatorStatistics implements Serializable {
public static CreatorStatistics toDTO(String json) {
return ObjectMapperUtil.readValue(CreatorStatistics.class, json);
}
public static CreatorStatistics unsafeToDTO(String json) {
return ObjectMapperUtil.unsafeReadValue(CreatorStatistics.class, json);
}
@io.swagger.v3.oas.annotations.media.Schema(
description = "Join date of the author."
)
public Date getJoinDate() {
if (_joinDateSupplier != null) {
joinDate = _joinDateSupplier.get();
_joinDateSupplier = null;
}
return joinDate;
}
public void setJoinDate(Date joinDate) {
this.joinDate = joinDate;
_joinDateSupplier = null;
}
@JsonIgnore
public void setJoinDate(
UnsafeSupplier joinDateUnsafeSupplier) {
_joinDateSupplier = () -> {
try {
return joinDateUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "Join date of the author.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date joinDate;
@JsonIgnore
private Supplier _joinDateSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "Last post created by the author."
)
public Date getLastPostDate() {
if (_lastPostDateSupplier != null) {
lastPostDate = _lastPostDateSupplier.get();
_lastPostDateSupplier = null;
}
return lastPostDate;
}
public void setLastPostDate(Date lastPostDate) {
this.lastPostDate = lastPostDate;
_lastPostDateSupplier = null;
}
@JsonIgnore
public void setLastPostDate(
UnsafeSupplier lastPostDateUnsafeSupplier) {
_lastPostDateSupplier = () -> {
try {
return lastPostDateUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "Last post created by the author.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Date lastPostDate;
@JsonIgnore
private Supplier _lastPostDateSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "Number of posts publicated by the author."
)
public Integer getPostsNumber() {
if (_postsNumberSupplier != null) {
postsNumber = _postsNumberSupplier.get();
_postsNumberSupplier = null;
}
return postsNumber;
}
public void setPostsNumber(Integer postsNumber) {
this.postsNumber = postsNumber;
_postsNumberSupplier = null;
}
@JsonIgnore
public void setPostsNumber(
UnsafeSupplier postsNumberUnsafeSupplier) {
_postsNumberSupplier = () -> {
try {
return postsNumberUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "Number of posts publicated by the author.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected Integer postsNumber;
@JsonIgnore
private Supplier _postsNumberSupplier;
@io.swagger.v3.oas.annotations.media.Schema(
description = "The rank of the author."
)
public String getRank() {
if (_rankSupplier != null) {
rank = _rankSupplier.get();
_rankSupplier = null;
}
return rank;
}
public void setRank(String rank) {
this.rank = rank;
_rankSupplier = null;
}
@JsonIgnore
public void setRank(UnsafeSupplier rankUnsafeSupplier) {
_rankSupplier = () -> {
try {
return rankUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField(description = "The rank of the author.")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
protected String rank;
@JsonIgnore
private Supplier _rankSupplier;
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof CreatorStatistics)) {
return false;
}
CreatorStatistics creatorStatistics = (CreatorStatistics)object;
return Objects.equals(toString(), creatorStatistics.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'");
Date joinDate = getJoinDate();
if (joinDate != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"joinDate\": ");
sb.append("\"");
sb.append(liferayToJSONDateFormat.format(joinDate));
sb.append("\"");
}
Date lastPostDate = getLastPostDate();
if (lastPostDate != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"lastPostDate\": ");
sb.append("\"");
sb.append(liferayToJSONDateFormat.format(lastPostDate));
sb.append("\"");
}
Integer postsNumber = getPostsNumber();
if (postsNumber != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"postsNumber\": ");
sb.append(postsNumber);
}
String rank = getRank();
if (rank != null) {
if (sb.length() > 1) {
sb.append(", ");
}
sb.append("\"rank\": ");
sb.append("\"");
sb.append(_escape(rank));
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.CreatorStatistics",
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