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

com.akeyless.auth.apikey.AuthApiSignature Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package com.akeyless.auth.apikey;

public class AuthApiSignature {
    private String signature;
    private String nonce;
    private long sigTime;

    AuthApiSignature(String signature, String nonce, long sigTime) {
        this.signature = signature;
        this.nonce = nonce;
        this.sigTime = sigTime;
    }

    public String getSignature() {
        return signature;
    }

    public String getNonce() {
        return nonce;
    }

    public long getSigTime() {
        return sigTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy