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

io.split.telemetry.domain.MethodLatencies Maven / Gradle / Ivy

package io.split.telemetry.domain;

import com.google.gson.annotations.SerializedName;

import java.util.ArrayList;
import java.util.List;

public class MethodLatencies {
    /* package private */ static final String FIELD_TREATMENT = "t";
    /* package private */ static final String FIELD_TREATMENTS = "ts";
    /* package private */ static final String FIELD_TREATMENT_WITH_CONFIG = "tc";
    /* package private */ static final String FIELD_TREATMENTS_WITH_CONFIG = "tcs";
    /* package private */ static final String FIELD_TRACK = "tr";

    @SerializedName(FIELD_TREATMENT)
    private List _treatment;
    @SerializedName(FIELD_TREATMENTS)
    private List _treatments;
    @SerializedName(FIELD_TREATMENT_WITH_CONFIG)
    private List _treatmentWithConfig;
    @SerializedName(FIELD_TREATMENTS_WITH_CONFIG)
    private List _treatmentsWithConfig;
    @SerializedName(FIELD_TRACK)
    private List _track;

    public MethodLatencies() {
        _treatment = new ArrayList<>();
        _treatments = new ArrayList<>();
        _treatmentWithConfig = new ArrayList<>();
        _treatmentsWithConfig = new ArrayList<>();
        _track = new ArrayList<>();
    }

    public List get_treatment() {
        return _treatment;
    }

    public void set_treatment(List _treatment) {
        this._treatment = _treatment;
    }

    public List get_treatments() {
        return _treatments;
    }

    public void set_treatments(List _treatments) {
        this._treatments = _treatments;
    }

    public List get_treatmentsWithConfig() {
        return _treatmentsWithConfig;
    }

    public void set_treatmentsWithConfig(List _treatmentsWithConfig) {
        this._treatmentsWithConfig = _treatmentsWithConfig;
    }

    public List get_treatmentWithConfig() {
        return _treatmentWithConfig;
    }

    public void set_treatmentWithConfig(List _treatmentWithConfig) {
        this._treatmentWithConfig = _treatmentWithConfig;
    }

    public List get_track() {
        return _track;
    }

    public void set_track(List _track) {
        this._track = _track;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy