com.liferay.search.experiences.rest.dto.v1_0.ElementInstance 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.search.experiences.rest.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 io.swagger.v3.oas.annotations.media.Schema;
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;
import javax.annotation.Generated;
import javax.validation.Valid;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Brian Wing Shun Chan
* @generated
*/
@Generated("")
@GraphQLName("ElementInstance")
@JsonFilter("Liferay.Vulcan")
@XmlRootElement(name = "ElementInstance")
public class ElementInstance implements Serializable {
public static ElementInstance toDTO(String json) {
return ObjectMapperUtil.readValue(ElementInstance.class, json);
}
public static ElementInstance unsafeToDTO(String json) {
return ObjectMapperUtil.unsafeReadValue(ElementInstance.class, json);
}
@Schema
@Valid
public Configuration getConfigurationEntry() {
if (_configurationEntrySupplier != null) {
configurationEntry = _configurationEntrySupplier.get();
_configurationEntrySupplier = null;
}
return configurationEntry;
}
public void setConfigurationEntry(Configuration configurationEntry) {
this.configurationEntry = configurationEntry;
_configurationEntrySupplier = null;
}
@JsonIgnore
public void setConfigurationEntry(
UnsafeSupplier
configurationEntryUnsafeSupplier) {
_configurationEntrySupplier = () -> {
try {
return configurationEntryUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Configuration configurationEntry;
@JsonIgnore
private Supplier _configurationEntrySupplier;
@Schema
@Valid
public SXPElement getSxpElement() {
if (_sxpElementSupplier != null) {
sxpElement = _sxpElementSupplier.get();
_sxpElementSupplier = null;
}
return sxpElement;
}
public void setSxpElement(SXPElement sxpElement) {
this.sxpElement = sxpElement;
_sxpElementSupplier = null;
}
@JsonIgnore
public void setSxpElement(
UnsafeSupplier sxpElementUnsafeSupplier) {
_sxpElementSupplier = () -> {
try {
return sxpElementUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected SXPElement sxpElement;
@JsonIgnore
private Supplier _sxpElementSupplier;
@Schema
public Long getSxpElementId() {
if (_sxpElementIdSupplier != null) {
sxpElementId = _sxpElementIdSupplier.get();
_sxpElementIdSupplier = null;
}
return sxpElementId;
}
public void setSxpElementId(Long sxpElementId) {
this.sxpElementId = sxpElementId;
_sxpElementIdSupplier = null;
}
@JsonIgnore
public void setSxpElementId(
UnsafeSupplier sxpElementIdUnsafeSupplier) {
_sxpElementIdSupplier = () -> {
try {
return sxpElementIdUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Long sxpElementId;
@JsonIgnore
private Supplier _sxpElementIdSupplier;
@Schema
public Integer getType() {
if (_typeSupplier != null) {
type = _typeSupplier.get();
_typeSupplier = null;
}
return type;
}
public void setType(Integer type) {
this.type = type;
_typeSupplier = null;
}
@JsonIgnore
public void setType(UnsafeSupplier typeUnsafeSupplier) {
_typeSupplier = () -> {
try {
return typeUnsafeSupplier.get();
}
catch (RuntimeException runtimeException) {
throw runtimeException;
}
catch (Exception exception) {
throw new RuntimeException(exception);
}
};
}
@GraphQLField
@JsonProperty(access = JsonProperty.Access.READ_WRITE)
protected Integer type;
@JsonIgnore
private Supplier _typeSupplier;
@Schema
@Valid
public Map getUiConfigurationValues() {
if (_uiConfigurationValuesSupplier != null) {
uiConfigurationValues = _uiConfigurationValuesSupplier.get();
_uiConfigurationValuesSupplier = null;
}
return uiConfigurationValues;
}
public void setUiConfigurationValues(
Map uiConfigurationValues) {
this.uiConfigurationValues = uiConfigurationValues;
_uiConfigurationValuesSupplier = null;
}
@JsonIgnore
public void setUiConfigurationValues(
UnsafeSupplier
© 2015 - 2025 Weber Informatics LLC | Privacy Policy