com.infomaximum.cluster.graphql.fieldargument.custom.CustomFieldArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cluster-graphql Show documentation
Show all versions of cluster-graphql Show documentation
Library for creating a light cluster
package com.infomaximum.cluster.graphql.fieldargument.custom;
import com.infomaximum.cluster.graphql.struct.ContextRequest;
import java.lang.reflect.Method;
/**
* Created by user on 06.09.2017.
*/
public interface CustomFieldArgument {
boolean isSupport(Class classType);
T getValue(Class classType, Method method, ContextRequest context);
}