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

org.jboss.resteasy.spi.StringConverter Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.jboss.resteasy.spi;

/**
 * Implement 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. * * @author Bill Burke * @version $Revision: 1 $ * * @deprecated * * @see jaxrs-api * @see javax.ws.rs.ext.ParamConverter */ @Deprecated public interface StringConverter { T fromString(String str); String toString(T value); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy