All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.netflix.spinnaker.keel.persistence.metamodel.tables.AgentLock Maven / Gradle / Ivy
/*
* 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.Keel;
import com.netflix.spinnaker.keel.persistence.metamodel.Keys;
import com.netflix.spinnaker.keel.persistence.metamodel.tables.records.AgentLockRecord;
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.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 AgentLock extends TableImpl {
private static final long serialVersionUID = 693188260;
/**
* The reference instance of keel.agent_lock
*/
public static final AgentLock AGENT_LOCK = new AgentLock();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return AgentLockRecord.class;
}
/**
* The column keel.agent_lock.lock_name
.
*/
public final TableField LOCK_NAME = createField(DSL.name("lock_name"), org.jooq.impl.SQLDataType.VARCHAR(256).nullable(false), this, "");
/**
* The column keel.agent_lock.expiry
.
*/
public final TableField EXPIRY = createField(DSL.name("expiry"), 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.agent_lock
table reference
*/
public AgentLock() {
this(DSL.name("agent_lock"), null);
}
/**
* Create an aliased keel.agent_lock
table reference
*/
public AgentLock(String alias) {
this(DSL.name(alias), AGENT_LOCK);
}
/**
* Create an aliased keel.agent_lock
table reference
*/
public AgentLock(Name alias) {
this(alias, AGENT_LOCK);
}
private AgentLock(Name alias, Table aliased) {
this(alias, aliased, null);
}
private AgentLock(Name alias, Table aliased, Field>[] parameters) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
}
public AgentLock(Table child, ForeignKey key) {
super(child, key, AGENT_LOCK);
}
@Override
public Schema getSchema() {
return Keel.KEEL;
}
@Override
public UniqueKey getPrimaryKey() {
return Keys.KEY_AGENT_LOCK_PRIMARY;
}
@Override
public List> getKeys() {
return Arrays.>asList(Keys.KEY_AGENT_LOCK_PRIMARY);
}
@Override
public AgentLock as(String alias) {
return new AgentLock(DSL.name(alias), this);
}
@Override
public AgentLock as(Name alias) {
return new AgentLock(alias, this);
}
/**
* Rename this table
*/
@Override
public AgentLock rename(String name) {
return new AgentLock(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public AgentLock rename(Name name) {
return new AgentLock(name, null);
}
// -------------------------------------------------------------------------
// Row2 type methods
// -------------------------------------------------------------------------
@Override
public Row2 fieldsRow() {
return (Row2) super.fieldsRow();
}
}