com.velexio.jlegos.data.annotations.DTOField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jLegos Show documentation
Show all versions of jLegos Show documentation
Java Legos - A collection of common application functionality for Java projects
package com.velexio.jlegos.data.annotations;
import com.velexio.jlegos.data.enums.DTOClassType;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target({FIELD})
@Retention(RUNTIME)
@Documented
public @interface DTOField {
DTOClassType[] dtoClassTypes() default {DTOClassType.CREATE_DTO, DTOClassType.UPDATE_DTO};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy