io.harness.cf.model.Serve Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ff-java-server-sdk Show documentation
Show all versions of ff-java-server-sdk Show documentation
Harness Feature Flag Java Server SDK
The newest version!
/*
* Harness feature flag service client apis
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.harness.cf.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.harness.cf.model.Distribution;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.io.Serializable;
import lombok.Builder;
import lombok.NoArgsConstructor;
import lombok.AllArgsConstructor;
/**
* Describe the distribution rule and the variation that should be served to the target
*/
@ApiModel(description = "Describe the distribution rule and the variation that should be served to the target")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-16T11:21:47.748293Z[GMT]")
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Serve implements Serializable {
private static final long serialVersionUID = 1L;
public static final String SERIALIZED_NAME_DISTRIBUTION = "distribution";
@SerializedName(SERIALIZED_NAME_DISTRIBUTION)
private Distribution distribution;
public static final String SERIALIZED_NAME_VARIATION = "variation";
@SerializedName(SERIALIZED_NAME_VARIATION)
private String variation;
public Serve distribution(Distribution distribution) {
this.distribution = distribution;
return this;
}
/**
* Get distribution
* @return distribution
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Distribution getDistribution() {
return distribution;
}
public void setDistribution(Distribution distribution) {
this.distribution = distribution;
}
public Serve variation(String variation) {
this.variation = variation;
return this;
}
/**
* Get variation
* @return variation
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getVariation() {
return variation;
}
public void setVariation(String variation) {
this.variation = variation;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Serve serve = (Serve) o;
return Objects.equals(this.distribution, serve.distribution) &&
Objects.equals(this.variation, serve.variation);
}
@Override
public int hashCode() {
return Objects.hash(distribution, variation);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Serve {\n");
sb.append(" distribution: ").append(toIndentedString(distribution)).append("\n");
sb.append(" variation: ").append(toIndentedString(variation)).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 ");
}
}