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

com.auth0.jwt.JwtProxy Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
package com.auth0.jwt;

public interface JwtProxy {
	
	void setPayloadHandler(PayloadHandler payloadHandler);
	String encode(Algorithm algorithm, Object obj, String secret, ClaimSet claimSet) throws Exception;
	Object decode(Algorithm algorithm, String token, String secret) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy