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

com.yahoo.athenz.zms.AssertionConditions Maven / Gradle / Ivy

The newest version!
//
// This file generated by rdl 1.5.2. Do not modify!
//

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

//
// AssertionConditions - The representation of list of assertion conditions
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class AssertionConditions {
    public List conditionsList;

    public AssertionConditions setConditionsList(List conditionsList) {
        this.conditionsList = conditionsList;
        return this;
    }
    public List getConditionsList() {
        return conditionsList;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy