All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.backbase.oss.boat.bay.client.model.BoatService Maven / Gradle / Ivy
/*
* Boat Bay Upload Server
* Endpoints for uploading Specs to boat bay
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.backbase.oss.boat.bay.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.backbase.oss.boat.bay.client.model.BoatCapability;
import com.backbase.oss.boat.bay.client.model.BoatStatistics;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.time.OffsetDateTime;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* BoatService
*/
@JsonPropertyOrder({
BoatService.JSON_PROPERTY_ID,
BoatService.JSON_PROPERTY_KEY,
BoatService.JSON_PROPERTY_NAME,
BoatService.JSON_PROPERTY_DESCRIPTION,
BoatService.JSON_PROPERTY_ICON,
BoatService.JSON_PROPERTY_COLOR,
BoatService.JSON_PROPERTY_CREATED_ON,
BoatService.JSON_PROPERTY_CREATED_BY,
BoatService.JSON_PROPERTY_STATISTICS,
BoatService.JSON_PROPERTY_CAPABILITY
})
@lombok.AllArgsConstructor @lombok.Builder
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-07-13T07:21:44.607556217Z[Etc/UTC]")
public class BoatService {
public static final String JSON_PROPERTY_ID = "id";
private BigDecimal id;
public static final String JSON_PROPERTY_KEY = "key";
private String key;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_ICON = "icon";
private String icon;
public static final String JSON_PROPERTY_COLOR = "color";
private String color;
public static final String JSON_PROPERTY_CREATED_ON = "createdOn";
private OffsetDateTime createdOn;
public static final String JSON_PROPERTY_CREATED_BY = "createdBy";
private String createdBy;
public static final String JSON_PROPERTY_STATISTICS = "statistics";
private BoatStatistics statistics;
public static final String JSON_PROPERTY_CAPABILITY = "capability";
private BoatCapability capability;
public BoatService() {
}
public BoatService id(BigDecimal id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public BigDecimal getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(BigDecimal id) {
this.id = id;
}
public BoatService key(String key) {
this.key = key;
return this;
}
/**
* Get key
* @return key
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_KEY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getKey() {
return key;
}
@JsonProperty(JSON_PROPERTY_KEY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setKey(String key) {
this.key = key;
}
public BoatService name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setName(String name) {
this.name = name;
}
public BoatService description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
public BoatService icon(String icon) {
this.icon = icon;
return this;
}
/**
* Get icon
* @return icon
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getIcon() {
return icon;
}
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIcon(String icon) {
this.icon = icon;
}
public BoatService color(String color) {
this.color = color;
return this;
}
/**
* Get color
* @return color
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COLOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getColor() {
return color;
}
@JsonProperty(JSON_PROPERTY_COLOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setColor(String color) {
this.color = color;
}
public BoatService createdOn(OffsetDateTime createdOn) {
this.createdOn = createdOn;
return this;
}
/**
* Get createdOn
* @return createdOn
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_ON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public OffsetDateTime getCreatedOn() {
return createdOn;
}
@JsonProperty(JSON_PROPERTY_CREATED_ON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCreatedOn(OffsetDateTime createdOn) {
this.createdOn = createdOn;
}
public BoatService createdBy(String createdBy) {
this.createdBy = createdBy;
return this;
}
/**
* Get createdBy
* @return createdBy
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCreatedBy() {
return createdBy;
}
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public BoatService statistics(BoatStatistics statistics) {
this.statistics = statistics;
return this;
}
/**
* Get statistics
* @return statistics
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATISTICS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public BoatStatistics getStatistics() {
return statistics;
}
@JsonProperty(JSON_PROPERTY_STATISTICS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setStatistics(BoatStatistics statistics) {
this.statistics = statistics;
}
public BoatService capability(BoatCapability capability) {
this.capability = capability;
return this;
}
/**
* Get capability
* @return capability
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CAPABILITY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public BoatCapability getCapability() {
return capability;
}
@JsonProperty(JSON_PROPERTY_CAPABILITY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCapability(BoatCapability capability) {
this.capability = capability;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BoatService boatService = (BoatService) o;
return Objects.equals(this.id, boatService.id) &&
Objects.equals(this.key, boatService.key) &&
Objects.equals(this.name, boatService.name) &&
Objects.equals(this.description, boatService.description) &&
Objects.equals(this.icon, boatService.icon) &&
Objects.equals(this.color, boatService.color) &&
Objects.equals(this.createdOn, boatService.createdOn) &&
Objects.equals(this.createdBy, boatService.createdBy) &&
Objects.equals(this.statistics, boatService.statistics) &&
Objects.equals(this.capability, boatService.capability);
}
@Override
public int hashCode() {
return Objects.hash(id, key, name, description, icon, color, createdOn, createdBy, statistics, capability);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BoatService {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" key: ").append(toIndentedString(key)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" icon: ").append(toIndentedString(icon)).append("\n");
sb.append(" color: ").append(toIndentedString(color)).append("\n");
sb.append(" createdOn: ").append(toIndentedString(createdOn)).append("\n");
sb.append(" createdBy: ").append(toIndentedString(createdBy)).append("\n");
sb.append(" statistics: ").append(toIndentedString(statistics)).append("\n");
sb.append(" capability: ").append(toIndentedString(capability)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}