/** * This class is generated by jOOQ */ package org.constellation.database.api.jooq.tables; /** * 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 TaskParameter extends org.jooq.impl.TableImpl<org.constellation.database.api.jooq.tables.records.TaskParameterRecord> { private static final long serialVersionUID = -639592951; /** * The reference instance of <code>admin.task_parameter</code> */ public static final org.constellation.database.api.jooq.tables.TaskParameter TASK_PARAMETER = new org.constellation.database.api.jooq.tables.TaskParameter(); /** * The class holding records for this type */ @Override public java.lang.Class<org.constellation.database.api.jooq.tables.records.TaskParameterRecord> getRecordType() { return org.constellation.database.api.jooq.tables.records.TaskParameterRecord.class; } /** * The column <code>admin.task_parameter.id</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this, ""); /** * The column <code>admin.task_parameter.owner</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.Integer> OWNER = createField("owner", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column <code>admin.task_parameter.name</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(255).nullable(false), this, ""); /** * The column <code>admin.task_parameter.date</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.Long> DATE = createField("date", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this, ""); /** * The column <code>admin.task_parameter.process_authority</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> PROCESS_AUTHORITY = createField("process_authority", org.jooq.impl.SQLDataType.VARCHAR.length(100).nullable(false), this, ""); /** * The column <code>admin.task_parameter.process_code</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> PROCESS_CODE = createField("process_code", org.jooq.impl.SQLDataType.VARCHAR.length(100).nullable(false), this, ""); /** * The column <code>admin.task_parameter.inputs</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> INPUTS = createField("inputs", org.jooq.impl.SQLDataType.CLOB.nullable(false), this, ""); /** * The column <code>admin.task_parameter.trigger</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> TRIGGER = createField("trigger", org.jooq.impl.SQLDataType.CLOB, this, ""); /** * The column <code>admin.task_parameter.trigger_type</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> TRIGGER_TYPE = createField("trigger_type", org.jooq.impl.SQLDataType.VARCHAR.length(30), this, ""); /** * The column <code>admin.task_parameter.type</code>. */ public final org.jooq.TableField<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.String> TYPE = createField("type", org.jooq.impl.SQLDataType.CLOB, this, ""); /** * Create a <code>admin.task_parameter</code> table reference */ public TaskParameter() { this("task_parameter", null); } /** * Create an aliased <code>admin.task_parameter</code> table reference */ public TaskParameter(java.lang.String alias) { this(alias, org.constellation.database.api.jooq.tables.TaskParameter.TASK_PARAMETER); } private TaskParameter(java.lang.String alias, org.jooq.Table<org.constellation.database.api.jooq.tables.records.TaskParameterRecord> aliased) { this(alias, aliased, null); } private TaskParameter(java.lang.String alias, org.jooq.Table<org.constellation.database.api.jooq.tables.records.TaskParameterRecord> aliased, org.jooq.Field<?>[] parameters) { super(alias, org.constellation.database.api.jooq.Admin.ADMIN, aliased, parameters, ""); } /** * {@inheritDoc} */ @Override public org.jooq.Identity<org.constellation.database.api.jooq.tables.records.TaskParameterRecord, java.lang.Integer> getIdentity() { return org.constellation.database.api.jooq.Keys.IDENTITY_TASK_PARAMETER; } /** * {@inheritDoc} */ @Override public org.jooq.UniqueKey<org.constellation.database.api.jooq.tables.records.TaskParameterRecord> getPrimaryKey() { return org.constellation.database.api.jooq.Keys.TASK_PARAMETER_PK; } /** * {@inheritDoc} */ @Override public java.util.List<org.jooq.UniqueKey<org.constellation.database.api.jooq.tables.records.TaskParameterRecord>> getKeys() { return java.util.Arrays.<org.jooq.UniqueKey<org.constellation.database.api.jooq.tables.records.TaskParameterRecord>>asList(org.constellation.database.api.jooq.Keys.TASK_PARAMETER_PK); } /** * {@inheritDoc} */ @Override public org.constellation.database.api.jooq.tables.TaskParameter as(java.lang.String alias) { return new org.constellation.database.api.jooq.tables.TaskParameter(alias, this); } /** * Rename this table */ public org.constellation.database.api.jooq.tables.TaskParameter rename(java.lang.String name) { return new org.constellation.database.api.jooq.tables.TaskParameter(name, null); } }