Class JpaValueEncoder<E>
-
- org.apache.tapestry5.internal.jpa.JpaValueEncoder<E>
-
- All Implemented Interfaces:
ValueEncoder<E>
public class JpaValueEncoder<E> extends implements ValueEncoder<E>
-
-
Constructor Summary
Constructors Constructor Description <E> entity, EntityManagerManager entityManagerManager, persistenceUnitName, PropertyAccess propertyAccess, TypeCoercer typeCoercer, org.slf4j.Logger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description toClient(E value)
Converts a value into a client-side representation.E
clientValue)
Converts a client-side representation, provided byValueEncoder.toClient(Object)
, back into a server-side value.
-
-
-
Constructor Detail
-
JpaValueEncoder
public <E> entity, EntityManagerManager entityManagerManager, persistenceUnitName, PropertyAccess propertyAccess, TypeCoercer typeCoercer, org.slf4j.Logger logger)
-
-
Method Detail
-
toClient
public toClient(E value)
Converts a value into a client-side representation. The value should be parseable byValueEncoder.toValue(String)
. In some cases, what is returned is an identifier used to locate the true object, rather than a string representation of the value itself.- Specified by:
toClient
in interfaceValueEncoder<E>
- Parameters:
value
- to be encoded- Returns:
- a string representation of the value, or the value's identity
-
toValue
public clientValue)
Converts a client-side representation, provided byValueEncoder.toClient(Object)
, back into a server-side value.- Specified by:
toValue
in interfaceValueEncoder<E>
- Parameters:
clientValue
- string representation of the value's identity- Returns:
- the corresponding entity, or null if not found
-
-