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

com.rathravane.clerk.credentials.ApiKeyCredential Maven / Gradle / Ivy

Go to download

A framework for user identification, authentication, and access control.

There is a newer version: 1.2.0
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy