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

org.springframework.security.oauth2.provider.token.store.redis.RedisTokenStoreSerializationStrategy Maven / Gradle / Ivy

package org.springframework.security.oauth2.provider.token.store.redis;

/**
 * @author efenderbosch
 */
public interface RedisTokenStoreSerializationStrategy {

	 T deserialize(byte[] bytes, Class clazz);

	String deserializeString(byte[] bytes);

	byte[] serialize(Object object);

	byte[] serialize(String data);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy