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

com.netflix.spinnaker.keel.persistence.metamodel.tables.ArtifactLastChecked Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
/*
 * This file is generated by jOOQ.
 */
package com.netflix.spinnaker.keel.persistence.metamodel.tables;


import com.netflix.spinnaker.jooq.LocalDateTimeToInstantConverter;
import com.netflix.spinnaker.keel.persistence.metamodel.Indexes;
import com.netflix.spinnaker.keel.persistence.metamodel.Keel;
import com.netflix.spinnaker.keel.persistence.metamodel.Keys;
import com.netflix.spinnaker.keel.persistence.metamodel.tables.records.ArtifactLastCheckedRecord;

import java.time.Instant;
import java.util.Arrays;
import java.util.List;

import javax.annotation.processing.Generated;

import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Index;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Row2;
import org.jooq.Schema;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.TableImpl;


/**
 * This class is generated by jOOQ.
 */
@Generated(
    value = {
        "https://www.jooq.org",
        "jOOQ version:3.13.6"
    },
    comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ArtifactLastChecked extends TableImpl {

    private static final long serialVersionUID = -724326431;

    /**
     * The reference instance of keel.artifact_last_checked
     */
    public static final ArtifactLastChecked ARTIFACT_LAST_CHECKED = new ArtifactLastChecked();

    /**
     * The class holding records for this type
     */
    @Override
    public Class getRecordType() {
        return ArtifactLastCheckedRecord.class;
    }

    /**
     * The column keel.artifact_last_checked.artifact_uid.
     */
    public final TableField ARTIFACT_UID = createField(DSL.name("artifact_uid"), org.jooq.impl.SQLDataType.CHAR(26).nullable(false), this, "");

    /**
     * The column keel.artifact_last_checked.at.
     */
    public final TableField AT = createField(DSL.name("at"), org.jooq.impl.SQLDataType.LOCALDATETIME.nullable(false).defaultValue(org.jooq.impl.DSL.field("CURRENT_TIMESTAMP(3)", org.jooq.impl.SQLDataType.LOCALDATETIME)), this, "", new LocalDateTimeToInstantConverter());

    /**
     * Create a keel.artifact_last_checked table reference
     */
    public ArtifactLastChecked() {
        this(DSL.name("artifact_last_checked"), null);
    }

    /**
     * Create an aliased keel.artifact_last_checked table reference
     */
    public ArtifactLastChecked(String alias) {
        this(DSL.name(alias), ARTIFACT_LAST_CHECKED);
    }

    /**
     * Create an aliased keel.artifact_last_checked table reference
     */
    public ArtifactLastChecked(Name alias) {
        this(alias, ARTIFACT_LAST_CHECKED);
    }

    private ArtifactLastChecked(Name alias, Table aliased) {
        this(alias, aliased, null);
    }

    private ArtifactLastChecked(Name alias, Table aliased, Field[] parameters) {
        super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
    }

    public  ArtifactLastChecked(Table child, ForeignKey key) {
        super(child, key, ARTIFACT_LAST_CHECKED);
    }

    @Override
    public Schema getSchema() {
        return Keel.KEEL;
    }

    @Override
    public List getIndexes() {
        return Arrays.asList(Indexes.ARTIFACT_LAST_CHECKED_ARTIFACT_LAST_CHECKED_AT_IDX);
    }

    @Override
    public UniqueKey getPrimaryKey() {
        return Keys.KEY_ARTIFACT_LAST_CHECKED_PRIMARY;
    }

    @Override
    public List> getKeys() {
        return Arrays.>asList(Keys.KEY_ARTIFACT_LAST_CHECKED_PRIMARY);
    }

    @Override
    public List> getReferences() {
        return Arrays.>asList(Keys.FK_ARTIFACT_LAST_CHECKED_DELIVERY_ARTIFACT);
    }

    public DeliveryArtifact deliveryArtifact() {
        return new DeliveryArtifact(this, Keys.FK_ARTIFACT_LAST_CHECKED_DELIVERY_ARTIFACT);
    }

    @Override
    public ArtifactLastChecked as(String alias) {
        return new ArtifactLastChecked(DSL.name(alias), this);
    }

    @Override
    public ArtifactLastChecked as(Name alias) {
        return new ArtifactLastChecked(alias, this);
    }

    /**
     * Rename this table
     */
    @Override
    public ArtifactLastChecked rename(String name) {
        return new ArtifactLastChecked(DSL.name(name), null);
    }

    /**
     * Rename this table
     */
    @Override
    public ArtifactLastChecked rename(Name name) {
        return new ArtifactLastChecked(name, null);
    }

    // -------------------------------------------------------------------------
    // Row2 type methods
    // -------------------------------------------------------------------------

    @Override
    public Row2 fieldsRow() {
        return (Row2) super.fieldsRow();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy