mirror of
https://github.com/github/codeql.git
synced 2026-03-01 05:13:41 +01:00
18 lines
392 B
Java
Generated
18 lines
392 B
Java
Generated
/*
|
|
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package play.mvc;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
public interface BodyParser<A> {
|
|
|
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface Of {}
|
|
}
|