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

klass.model.meta.domain.dto.MaxLengthPropertyValidationDTO Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package klass.model.meta.domain.dto;

import java.time.*;
import java.util.*;

import javax.validation.constraints.*;

/**
 * Auto-generated by {@link cool.klass.generator.dto.DataTransferObjectsGenerator}
 */
public class MaxLengthPropertyValidationDTO
{
    private String classifierName;
    private String propertyName;
    @NotNull
    private Integer number;

    private DataTypePropertyDTO dataTypeProperty;

    public String getClassifierName()
    {
        return this.classifierName;
    }

    public void setClassifierName(String classifierName)
    {
        this.classifierName = classifierName;
    }

    public String getPropertyName()
    {
        return this.propertyName;
    }

    public void setPropertyName(String propertyName)
    {
        this.propertyName = propertyName;
    }

    public Integer getNumber()
    {
        return this.number;
    }

    public void setNumber(Integer number)
    {
        this.number = number;
    }

    public DataTypePropertyDTO getDataTypeProperty()
    {
        return this.dataTypeProperty;
    }

    public void setDataTypeProperty(DataTypePropertyDTO dataTypeProperty)
    {
        this.dataTypeProperty = dataTypeProperty;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy