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

com.yahoo.security.tls.HostGlobPattern Maven / Gradle / Ivy

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

import java.util.Objects;

/**
 * @author bjorncs
 */
class HostGlobPattern implements RequiredPeerCredential.Pattern {

    private final GlobPattern globPattern;

    HostGlobPattern(String pattern) {
        this.globPattern = new GlobPattern(pattern, new char[] {'.'}, true);
    }

    @Override
    public String asString() {
        return globPattern.asString();
    }

    @Override
    public boolean matches(String hostString) {
        return globPattern.matches(hostString);
    }

    @Override
    public String toString() {
        return "HostGlobPattern{" +
                "pattern='" + globPattern + '\'' +
                '}';
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy