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

com.codingapi.springboot.fast.jpa.JpaQueryContext Maven / Gradle / Ivy

There is a newer version: 3.3.0.dev1
Show newest version
package com.codingapi.springboot.fast.jpa;


import lombok.Getter;

public class JpaQueryContext {

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

    private JpaQueryContext() {

    }

    @Getter
    private JPAQuery JPAQuery;

    void setJPAQuery(JPAQuery JPAQuery) {
        this.JPAQuery = JPAQuery;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy