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

io.github.sinri.keel.mysql.action.AbstractNamedMixinAction Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.mysql.action;

import io.github.sinri.keel.mysql.NamedMySQLConnection;

import javax.annotation.Nonnull;

/**
 * @param 
 * @since 3.2.11 Refined for Mixin Style, extracted NamedActionInterface.
 */
public abstract class AbstractNamedMixinAction implements NamedActionMixinInterface {
    private final @Nonnull C namedSqlConnection;

    public AbstractNamedMixinAction(@Nonnull C namedSqlConnection) {
        this.namedSqlConnection = namedSqlConnection;
    }

    @Nonnull
    @Override
    public final C getNamedSqlConnection() {
        return namedSqlConnection;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy