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

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



@Component
public class EmailWrapper  implements VaildWrapper{

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy