com.rathravane.clerk.credentials.ApiKeyCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clerk Show documentation
Show all versions of clerk Show documentation
A framework for user identification, authentication, and access control.
package com.rathravane.clerk.credentials;
public class ApiKeyCredential
{
public ApiKeyCredential ( String apiKey, String signedContent, String signature )
{
fKey = apiKey;
fContent = signedContent;
fSig = signature;
}
public String getApiKey () { return fKey; }
public String getContent () { return fContent; }
public String getSignature () { return fSig; }
private final String fKey;
private final String fContent;
private final String fSig;
}