org.hotrod.runtime.livesql.metadata.View Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hotrod-livesql Show documentation
Show all versions of hotrod-livesql Show documentation
HotRod is an ORM for Java, Spring and SpringBoot.
package org.hotrod.runtime.livesql.metadata;
public abstract class View extends TableOrView {
public View(final String catalog, final String schema, final String name, final String type, final String alias) {
super(catalog, schema, name, type, alias);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy