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

org.codehaus.httpcache4j.auth.bearer.BearerToken Maven / Gradle / Ivy

The newest version!
package org.codehaus.httpcache4j.auth.bearer;


import org.codehaus.httpcache4j.util.Preconditions;

import java.util.Objects;

/**
 * @author Erlend Hamnaberg
 */
public final class BearerToken {
    private String token;

    public BearerToken(String token) {
        Preconditions.checkArgument(!Objects.toString(token, "").isEmpty(), "Token was null or empty");
        this.token = token;
    }

    public String getToken() {
        return token;
    }
    
    public String toHeaderValue() {
        return "Bearer " + token;
    }

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

        BearerToken that = (BearerToken) o;

        if (token != null ? !token.equals(that.token) : that.token != null) return false;

        return true;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy