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

com.arangodb.vst.internal.JwtAuthenticationRequest Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
package com.arangodb.vst.internal;

import com.arangodb.internal.InternalRequest;

public class JwtAuthenticationRequest extends InternalRequest {

    private final String token;
    private final String encryption;    // "jwt"

    public JwtAuthenticationRequest(final String token, final String encryption) {
        super(null, null, null);
        this.token = token;
        this.encryption = encryption;
        setType(1000);
    }

    public String getToken() {
        return token;
    }

    public String getEncryption() {
        return encryption;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy