if(Modifier.isStatic(m.getModifiers()) || m.getDeclaringClass()==Object.class)
continue;
String location = null;
String httpMethod = null;
Annotation[] annotations = m.getDeclaredAnnotations();
Consume c = null;
if(annotations!=null)
{
for(Annotation a : annotations)
{
if(a instanceof HttpResource)