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

com.codingapi.springboot.fast.jdbc.JdbcQueryContext Maven / Gradle / Ivy

package com.codingapi.springboot.fast.jdbc;


import lombok.Getter;

public class JdbcQueryContext {

    @Getter
    private static final JdbcQueryContext instance = new JdbcQueryContext();

    private JdbcQueryContext() {

    }

    @Getter
    private JdbcQuery jdbcQuery;

    void setJdbcQuery(JdbcQuery jdbcQuery) {
        this.jdbcQuery = jdbcQuery;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy