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

com.yahoo.athenz.msd.WorkloadOptions 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.msd;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.yahoo.rdl.*;

//
// WorkloadOptions -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class WorkloadOptions {
    public boolean ipChanged;

    public WorkloadOptions setIpChanged(boolean ipChanged) {
        this.ipChanged = ipChanged;
        return this;
    }
    public boolean getIpChanged() {
        return ipChanged;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy