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

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

The 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