com.arangodb.vst.internal.JwtAuthenticationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vst-protocol Show documentation
Show all versions of vst-protocol Show documentation
VST Protocol module for ArangoDB Java Driver
package com.arangodb.vst.internal;
import com.arangodb.arch.UsedInApi;
import com.arangodb.internal.InternalRequest;
@UsedInApi
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