com.netflix.spinnaker.keel.persistence.metamodel.DefaultCatalog Maven / Gradle / Ivy
/*
* This file is generated by jOOQ.
*/
package com.netflix.spinnaker.keel.persistence.metamodel;
import java.util.Arrays;
import java.util.List;
import javax.annotation.processing.Generated;
import org.jooq.Schema;
import org.jooq.impl.CatalogImpl;
/**
* 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 DefaultCatalog extends CatalogImpl {
private static final long serialVersionUID = -508086130;
/**
* The reference instance of DEFAULT_CATALOG
*/
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
/**
* The schema keel
.
*/
public final Keel KEEL = Keel.KEEL;
/**
* No further instances allowed
*/
private DefaultCatalog() {
super("");
}
@Override
public final List getSchemas() {
return Arrays.asList(
Keel.KEEL);
}
}