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

com.yahoo.athenz.zts.AssertionEffect 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.yahoo.rdl.*;

//
// AssertionEffect - Every assertion can have the effect of ALLOW or DENY.
//
public enum AssertionEffect {
    ALLOW,
    DENY;

    public static AssertionEffect fromString(String v) {
        for (AssertionEffect e : values()) {
            if (e.toString().equals(v)) {
                return e;
            }
        }
        throw new IllegalArgumentException("Invalid string representation for AssertionEffect: " + v);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy