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

org.jboss.resteasy.spi.metadata.ResourceClass Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.spi.metadata;

/**
 * @author Christian Kaltepoth
 */
public interface ResourceClass
{
   String getPath();

   Class getClazz();

   ResourceConstructor getConstructor();

   FieldParameter[] getFields();

   SetterParameter[] getSetters();

   ResourceMethod[] getResourceMethods();

   ResourceLocator[] getResourceLocators();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy