Package org.jboss.resteasy.plugins.stats
Class ResourceMethodEntry
- java.lang.Object
-
- org.jboss.resteasy.plugins.stats.ResourceMethodEntry
-
- Direct Known Subclasses:
DeleteResourceMethod
,GetResourceMethod
,HeadResourceMethod
,OptionsResourceMethod
,PostResourceMethod
,PutResourceMethod
,TraceResourceMethod
public class ResourceMethodEntry extends java.lang.Object
<- Version:
- $Revision: 1 $
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
clazz
private java.util.List<java.lang.String>
consumes
private long
invocations
private java.lang.String
method
private java.util.List<java.lang.String>
produces
-
Constructor Summary
Constructors Constructor Description ResourceMethodEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClazz()
java.util.List<java.lang.String>
getConsumes()
long
getInvocations()
java.lang.String
getMethod()
java.util.List<java.lang.String>
getProduces()
void
setClazz(java.lang.String clazz)
void
setInvocations(long invocations)
void
setMethod(java.lang.String method)
-
-
-
Method Detail
-
getClazz
public java.lang.String getClazz()
-
getMethod
public java.lang.String getMethod()
-
getInvocations
public long getInvocations()
-
setClazz
public void setClazz(java.lang.String clazz)
-
setMethod
public void setMethod(java.lang.String method)
-
setInvocations
public void setInvocations(long invocations)
-
getProduces
public java.util.List<java.lang.String> getProduces()
-
getConsumes
public java.util.List<java.lang.String> getConsumes()
-
-