GET.java 553 Bytes
package retrofit.http;

import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({java.lang.annotation.ElementType.METHOD})
@RestMethod("GET")
public @interface GET
{
  String value();
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/retrofit/http/GET.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */