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

com.velexio.jlegos.data.annotations.DTOField Maven / Gradle / Ivy

Go to download

Java Legos - A collection of common application functionality for Java projects

There is a newer version: 0.17.6
Show newest version
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