All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphql_java_generator.annotation.GraphQLDirectives Maven / Gradle / Ivy

There is a newer version: 0.11.1
Show newest version
/**
 * 
 */
package com.graphql_java_generator.annotation;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;

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

/**
 * List of all directives that apply to this GraphQL type, field or parameter
 * 
 * @author etienne-sf
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ TYPE, FIELD, METHOD, PARAMETER })
public @interface GraphQLDirectives {

	/** The directives that were defined in the GraphQL schema for this item */
	public GraphQLDirective[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy