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

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

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

/**
 * Abstraction to allow custom payload handling e.g. in the event the payload needs to be encrypted
 */
public interface PayloadHandler {
	
	String encoding(Object payload) throws Exception;
	Object decoding(String payload) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy