Package org.jboss.resteasy.spi.metadata
Class ResourceClass
- java.lang.Object
-
- org.jboss.resteasy.spi.metadata.ResourceClass
-
public class ResourceClass extends java.lang.Object- Version:
- $Revision: 1 $
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Class<?>clazzprotected ResourceConstructorconstructorprivate static FieldParameter[]EMPTY_FIELD_PARAMSprivate static ResourceLocator[]EMPTY_RESOURCE_LOCATORSprivate static ResourceMethod[]EMPTY_RESOURCE_METHODSprivate static SetterParameter[]EMPTY_SETTER_PARAMETERSprotected FieldParameter[]fieldsprotected java.lang.Stringpathprotected ResourceLocator[]resourceLocatorsprotected ResourceMethod[]resourceMethodsprotected SetterParameter[]setters
-
Constructor Summary
Constructors Constructor Description ResourceClass(java.lang.Class<?> clazz, java.lang.String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>getClazz()ResourceConstructorgetConstructor()FieldParameter[]getFields()java.lang.StringgetPath()ResourceLocator[]getResourceLocators()ResourceMethod[]getResourceMethods()SetterParameter[]getSetters()
-
-
-
Field Detail
-
EMPTY_FIELD_PARAMS
private static final FieldParameter[] EMPTY_FIELD_PARAMS
-
EMPTY_SETTER_PARAMETERS
private static final SetterParameter[] EMPTY_SETTER_PARAMETERS
-
EMPTY_RESOURCE_METHODS
private static final ResourceMethod[] EMPTY_RESOURCE_METHODS
-
EMPTY_RESOURCE_LOCATORS
private static final ResourceLocator[] EMPTY_RESOURCE_LOCATORS
-
clazz
protected java.lang.Class<?> clazz
-
fields
protected FieldParameter[] fields
-
setters
protected SetterParameter[] setters
-
resourceMethods
protected ResourceMethod[] resourceMethods
-
resourceLocators
protected ResourceLocator[] resourceLocators
-
constructor
protected ResourceConstructor constructor
-
path
protected java.lang.String path
-
-
Method Detail
-
getPath
public java.lang.String getPath()
-
getClazz
public java.lang.Class<?> getClazz()
-
getConstructor
public ResourceConstructor getConstructor()
-
getFields
public FieldParameter[] getFields()
-
getSetters
public SetterParameter[] getSetters()
-
getResourceMethods
public ResourceMethod[] getResourceMethods()
-
getResourceLocators
public ResourceLocator[] getResourceLocators()
-
-