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

pub.codex.apix.wrapper.NullWrapper Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package pub.codex.apix.wrapper;

import org.springframework.stereotype.Component;

import javax.validation.constraints.Null;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;


@Component
public class NullWrapper implements VaildWrapper {

    @Override
    public Class getType() {
        return Null.class;
    }

    @Override
    public Class[] getGroup(Field field) {

        Annotation annotation = field.getAnnotation(Null.class);

        if (annotation != null) {
            return ((Null) annotation).groups();
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy