me.snowdrop.istio.api.mixer.v1.HeaderOperation Maven / Gradle / Ivy
package me.snowdrop.istio.api.mixer.v1;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"apiVersion",
"kind",
"metadata",
"name",
"operation",
"value"
})
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.kubernetes.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
}, refs = {
@BuildableReference(ObjectMeta.class)
})
public class HeaderOperation implements Serializable
{
/**
*
*
*/
@JsonProperty("name")
@JsonPropertyDescription("")
private String name;
@JsonProperty("operation")
private Operation operation;
/**
*
*
*/
@JsonProperty("value")
@JsonPropertyDescription("")
private String value;
private final static long serialVersionUID = 7732056547466016108L;
/**
* No args constructor for use in serialization
*
*/
public HeaderOperation() {
}
/**
*
* @param name
* @param operation
* @param value
*/
public HeaderOperation(String name, Operation operation, String value) {
super();
this.name = name;
this.operation = operation;
this.value = value;
}
/**
*
*
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
*
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
@JsonProperty("operation")
public Operation getOperation() {
return operation;
}
@JsonProperty("operation")
public void setOperation(Operation operation) {
this.operation = operation;
}
/**
*
*
*/
@JsonProperty("value")
public String getValue() {
return value;
}
/**
*
*
*/
@JsonProperty("value")
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy