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

com.yahoo.athenz.zts.Workloads Maven / Gradle / Ivy

There is a newer version: 1.11.66
Show newest version
//
// This file generated by rdl 1.5.2. Do not modify!
//

package com.yahoo.athenz.zts;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
import com.yahoo.rdl.*;

//
// Workloads -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class Workloads {
    public List workloadList;

    public Workloads setWorkloadList(List workloadList) {
        this.workloadList = workloadList;
        return this;
    }
    public List getWorkloadList() {
        return workloadList;
    }

    @Override
    public boolean equals(Object another) {
        if (this != another) {
            if (another == null || another.getClass() != Workloads.class) {
                return false;
            }
            Workloads a = (Workloads) another;
            if (workloadList == null ? a.workloadList != null : !workloadList.equals(a.workloadList)) {
                return false;
            }
        }
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy