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

io.github.web.validation.vo.IntegerVO Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package io.github.web.validation.vo;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

import javax.validation.constraints.NotNull;

/**
 * IntegerVO
 *
 * @author Wilson
 */
@Setter
@Getter
@ToString
public class IntegerVO {

    @NotNull
    private Integer value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy