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

io.vertx.tp.optic.fantom.Anchoret Maven / Gradle / Ivy

package io.vertx.tp.optic.fantom;

import io.vertx.up.unity.UxJooq;
import io.vertx.up.log.Annal;

/*
 * All sub-class for extension of Jooq type
 */
public abstract class Anchoret {

    private transient UxJooq jooq;

    /*
     * This method is for sub-class only
     */
    @SuppressWarnings("unchecked")
    public T on(final UxJooq jooq) {
        this.jooq = jooq;
        return (T) this;
    }

    protected UxJooq dao() {
        return this.jooq;
    }

    protected Annal getLogger() {
        return Annal.get(this.getClass());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy