Package org.jboss.resteasy.spi.metadata
Class ResourceLocator
- java.lang.Object
-
- org.jboss.resteasy.spi.metadata.ResourceLocator
-
- Direct Known Subclasses:
ResourceMethod
public class ResourceLocator extends java.lang.Object
- Version:
- $Revision: 1 $
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.reflect.Method
annotatedMethod
protected java.lang.String
fullpath
protected java.lang.reflect.Type
genericReturnType
protected java.lang.reflect.Method
method
protected MethodParameter[]
params
protected java.lang.String
path
protected ResourceClass
resourceClass
protected java.lang.Class<?>
returnType
-
Constructor Summary
Constructors Constructor Description ResourceLocator(ResourceClass resourceClass, java.lang.reflect.Method method, java.lang.reflect.Method annotatedMethod)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.reflect.Method
getAnnotatedMethod()
java.lang.String
getFullpath()
java.lang.reflect.Type
getGenericReturnType()
java.lang.reflect.Method
getMethod()
MethodParameter[]
getParams()
java.lang.String
getPath()
ResourceClass
getResourceClass()
java.lang.Class<?>
getReturnType()
java.lang.String
toString()
-
-
-
Field Detail
-
resourceClass
protected ResourceClass resourceClass
-
returnType
protected java.lang.Class<?> returnType
-
genericReturnType
protected java.lang.reflect.Type genericReturnType
-
method
protected java.lang.reflect.Method method
-
annotatedMethod
protected java.lang.reflect.Method annotatedMethod
-
params
protected MethodParameter[] params
-
fullpath
protected java.lang.String fullpath
-
path
protected java.lang.String path
-
-
Constructor Detail
-
ResourceLocator
public ResourceLocator(ResourceClass resourceClass, java.lang.reflect.Method method, java.lang.reflect.Method annotatedMethod)
-
-
Method Detail
-
getResourceClass
public ResourceClass getResourceClass()
-
getReturnType
public java.lang.Class<?> getReturnType()
-
getGenericReturnType
public java.lang.reflect.Type getGenericReturnType()
-
getMethod
public java.lang.reflect.Method getMethod()
-
getAnnotatedMethod
public java.lang.reflect.Method getAnnotatedMethod()
-
getParams
public MethodParameter[] getParams()
-
getFullpath
public java.lang.String getFullpath()
-
getPath
public java.lang.String getPath()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-