io.crnk.jpa.internal.JpaRequestContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crnk-jpa Show documentation
Show all versions of crnk-jpa Show documentation
JSON API framework for Java
package io.crnk.jpa.internal;
import io.crnk.core.queryspec.QuerySpec;
public class JpaRequestContext {
private Object repository;
private QuerySpec querySpec;
public JpaRequestContext(Object repository, QuerySpec querySpec) {
super();
this.repository = repository;
this.querySpec = querySpec;
}
public Object getRepository() {
return repository;
}
public QuerySpec getQuerySpec() {
return querySpec;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy