HttpResponse.java

/*
 * Decompiled with CFR 0_132.
 */
package org.xutils.http.annotation;

import java.lang.annotation.Annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.xutils.http.app.ResponseParser;

@Target(value={ElementType.TYPE})
@Retention(value=RetentionPolicy.RUNTIME)
public @interface HttpResponse {
    public Class<? extends ResponseParser> parser();
}