All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getunleash.variant.Payload Maven / Gradle / Ivy

The newest version!
package io.getunleash.variant;

import io.getunleash.lang.Nullable;
import java.util.Objects;

public class Payload {
    private String type;
    @Nullable private String value;

    public Payload(String type, @Nullable String value) {
        this.type = type;
        this.value = value;
    }

    public String getType() {
        return type;
    }

    public @Nullable String getValue() {
        return value;
    }

    @Override
    public boolean equals(@Nullable Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Payload payload = (Payload) o;
        return Objects.equals(type, payload.type) && Objects.equals(value, payload.value);
    }

    @Override
    public int hashCode() {
        return Objects.hash(type, value);
    }

    @Override
    public String toString() {
        return "Payload{" + "type='" + type + '\'' + ", value='" + value + '\'' + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy