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

com.nimbusds.jose.PayloadTransformer Maven / Gradle / Ivy

Go to download

Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)

There is a newer version: 10.0.2
Show newest version
package com.nimbusds.jose;


/**
 * Generic payload type transformer. Implementations should be tread-safe.
 */
public interface PayloadTransformer {


	/**
	 * Transforms the specified payload into the desired type.
	 *
	 * @param payload The payload. Not {@code null}.
	 *
	 * @return The desired type.
	 */
	T transform(final Payload payload);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy