Package org.jboss.resteasy.spi
Interface StringConverter<T>
-
@Deprecated public interface StringConverter<T>
Deprecated.Replaced by javax.ws.rs.ext.ParamConverterImplement this interface and annotate your class with @Provider to provide marshalling and unmarshalling of string-based, @HeaderParam, @MatrixParam, @QueryParam, and/or @PathParam injected values. Use this when toString(), valueOf, and/or constructor(String) can not satisfy your marshalling requirements.- Version:
- $Revision: 1 $
- See Also:
ParamConverter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description T
fromString(java.lang.String str)
Deprecated.java.lang.String
toString(T value)
Deprecated.
-