/** * This class is generated by jOOQ */ package org.constellation.database.api.jooq.tables.pojos; /** * This class is generated by jOOQ. */ @javax.annotation.Generated( value = { "http://www.jooq.org", "jOOQ version:3.5.3" }, comments = "This class is generated by jOOQ" ) @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class DataI18n implements java.io.Serializable { private static final long serialVersionUID = 1511831162; private java.lang.Integer dataId; private java.lang.String lang; private java.lang.Integer title; private java.lang.Integer description; public DataI18n() {} public DataI18n( java.lang.Integer dataId, java.lang.String lang, java.lang.Integer title, java.lang.Integer description ) { this.dataId = dataId; this.lang = lang; this.title = title; this.description = description; } @javax.validation.constraints.NotNull public java.lang.Integer getDataId() { return this.dataId; } public DataI18n setDataId(java.lang.Integer dataId) { this.dataId = dataId; return this; } @javax.validation.constraints.NotNull @javax.validation.constraints.Size(max = 2) public java.lang.String getLang() { return this.lang; } public DataI18n setLang(java.lang.String lang) { this.lang = lang; return this; } @javax.validation.constraints.NotNull public java.lang.Integer getTitle() { return this.title; } public DataI18n setTitle(java.lang.Integer title) { this.title = title; return this; } @javax.validation.constraints.NotNull public java.lang.Integer getDescription() { return this.description; } public DataI18n setDescription(java.lang.Integer description) { this.description = description; return this; } }