com.github.jscookie.javacookie.ConverterStrategy Maven / Gradle / Ivy
The newest version!
package com.github.jscookie.javacookie;
public interface ConverterStrategy {
/**
* Apply the decoding strategy of a cookie. The return will be used as the cookie value
*
* @return null
if the default encoding mechanism should be used instead
*/
public abstract String convert( String value, String name ) throws ConverterException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy