package org.jboss.resteasy.spi.touri;
This is the interface that defines all object to uri transformations in
ObjectToURI
Author: Solomon Duskis Version: $Revision: 1 $
/**
* This is the interface that defines all object to uri transformations in
* ObjectToURI
*
* @author <a href="mailto:sduskis@gmail.com">Solomon Duskis</a>
* @version $Revision: 1 $
*/
public interface URIResolver
{
boolean handles(Class<?> type);
String resolveURI(Object object);
}