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

pub.codex.apix.wrapper.AssertTrueWrapper 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.AssertTrue;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;

@Component
public class AssertTrueWrapper  implements VaildWrapper{

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy