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

io.quarkus.security.credential.TokenCredential Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package io.quarkus.security.credential;

/**
 * A token based credential
 */
public class TokenCredential implements Credential {

    private final String token;
    private final String type;

    public TokenCredential(String token, String type) {
        this.token = token;
        this.type = type;
    }

    public String getToken() {
        return token;
    }

    public String getType() {
        return type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy