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

com.yahoo.security.tls.policy.AuthorizedPeers Maven / Gradle / Ivy

There is a newer version: 8.411.13
Show newest version
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.security.tls.policy;

import java.util.Collections;
import java.util.Objects;
import java.util.Set;

/**
 * @author bjorncs
 */
public class AuthorizedPeers {

    private final Set peerPolicies;

    public AuthorizedPeers(Set peerPolicies) {
        this.peerPolicies = verifyPeerPolicies(peerPolicies);
    }

    private Set verifyPeerPolicies(Set peerPolicies) {
        long distinctNames = peerPolicies.stream()
                .map(PeerPolicy::policyName)
                .distinct()
                .count();
        if (distinctNames != peerPolicies.size()) {
            throw new IllegalArgumentException("'authorized-peers' contains entries with duplicate names");
        }
        return Collections.unmodifiableSet(peerPolicies);
    }

    public Set peerPolicies() {
        return peerPolicies;
    }

    @Override
    public String toString() {
        return "AuthorizedPeers{" +
                "peerPolicies=" + peerPolicies +
                '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        AuthorizedPeers that = (AuthorizedPeers) o;
        return Objects.equals(peerPolicies, that.peerPolicies);
    }

    @Override
    public int hashCode() {
        return Objects.hash(peerPolicies);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy