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

com.yahoo.config.provision.AthenzService Maven / Gradle / Ivy

There is a newer version: 8.441.21
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.config.provision;

/**
 * @author mortent
 */
public class AthenzService {

    private final String name;

    private AthenzService(String name) {
        this.name = name;
    }

    public String value() { return name; }

    public static AthenzService from(String value) {
        return new AthenzService(value);
    }

    @Override
    public String toString() {
        return "AthenzService{" +
               "name='" + name + '\'' +
               '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        AthenzService that = (AthenzService) o;

        return name != null ? name.equals(that.name) : that.name == null;
    }

    @Override
    public int hashCode() {
        return name != null ? name.hashCode() : 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy