com.redijedi.tapestry.internal.StringValueEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redijedi-t5-components
Show all versions of redijedi-t5-components
A collection of components built specifically for Tapestry 5.
The newest version!
package com.redijedi.tapestry.internal;
import org.apache.tapestry.ValueEncoder;
/**
*
* @author torr
*
*/
public class StringValueEncoder implements ValueEncoder {
public String toClient(String value) {
return value;
}
public String toValue(String clientValue) {
return clientValue;
}
}