io.github.sinri.keel.mysql.AbstractNamedAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.
The newest version!
package io.github.sinri.keel.mysql;
import javax.annotation.Nonnull;
/**
* @param
* @since 3.0.11 Technical Preview
* @since 3.0.18 Finished Technical Preview.
* @since 3.2.11 Deprecated. Use `io.github.sinri.keel.mysql.action.AbstractNamedAction` or `io.github.sinri.keel.mysql.action.AbstractNamedMixinAction`.
*/
@Deprecated(since = "3.2.11", forRemoval = true)
public class AbstractNamedAction {
private final @Nonnull C namedSqlConnection;
public AbstractNamedAction(@Nonnull C namedSqlConnection) {
this.namedSqlConnection = namedSqlConnection;
}
@Nonnull
public final C getNamedSqlConnection() {
return namedSqlConnection;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy