Package org.jboss.resteasy.spi.metadata
Interface ResourceClass
-
- All Known Implementing Classes:
DefaultResourceClass
public interface ResourceClass
- Author:
- Christian Kaltepoth
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<?>
getClazz()
ResourceConstructor
getConstructor()
FieldParameter[]
getFields()
String
getPath()
ResourceLocator[]
getResourceLocators()
ResourceMethod[]
getResourceMethods()
SetterParameter[]
getSetters()
-
-
-
Method Detail
-
getPath
String getPath()
-
getClazz
Class<?> getClazz()
-
getConstructor
ResourceConstructor getConstructor()
-
getFields
FieldParameter[] getFields()
-
getSetters
SetterParameter[] getSetters()
-
getResourceMethods
ResourceMethod[] getResourceMethods()
-
getResourceLocators
ResourceLocator[] getResourceLocators()
-
-