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

org.jboss.resteasy.spi.touri.URIableURIResolver Maven / Gradle / Ivy

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

/**
 * URIResolver Adapter for URIable classes
 *
 * @author Solomon Duskis
 * @version $Revision: 1 $
 */
public class URIableURIResolver implements URIResolver
{
   public boolean handles(Class type)
   {
      return URIable.class.isAssignableFrom(type);
   }

   public String resolveURI(Object object)
   {
      return ((URIable) object).toURI();
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy