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

no.unit.commons.apigateway.authentication.AuthPolicy Maven / Gradle / Ivy

There is a newer version: 1.41.0
Show newest version
package no.unit.commons.apigateway.authentication;

import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import nva.commons.core.JacocoGenerated;

public class AuthPolicy {

    public static final String VERSION = "2012-10-17";

    private String version;
    private List statement;

    @JacocoGenerated
    public AuthPolicy() {
    }

    private AuthPolicy(Builder builder) {
        setVersion(VERSION);
        setStatement(builder.statement);
    }

    public static Builder newBuilder() {
        return new Builder();
    }

    @JacocoGenerated
    public String getVersion() {
        return version;
    }

    @JacocoGenerated
    public void setVersion(String version) {
        this.version = version;
    }

    @JacocoGenerated
    public List getStatement() {
        return statement;
    }

    @JacocoGenerated
    public void setStatement(List statement) {
        this.statement = statement;
    }

    @Override
    @JacocoGenerated
    public int hashCode() {
        return Objects.hash(getVersion(), getStatement());
    }

    @Override
    @JacocoGenerated
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        AuthPolicy that = (AuthPolicy) o;
        return equalVersions(that)
               && equalStatements(that.getStatement());
    }

    private boolean equalStatements(List otherStatement) {
        boolean leftContainsRight = new HashSet<>(statement).containsAll(otherStatement);
        boolean rightContainsLeft = new HashSet<>(otherStatement).containsAll(statement);
        return leftContainsRight && rightContainsLeft;
    }

    private boolean equalVersions(AuthPolicy that) {
        return Objects.equals(getVersion(), that.getVersion());
    }

    public static final class Builder {

        private List statement;

        private Builder() {
        }

        public Builder withStatement(List val) {
            statement = val;
            return this;
        }

        public AuthPolicy build() {
            return new AuthPolicy(this);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy