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

com.github.smokestack.jpa.MockNativeQuery Maven / Gradle / Ivy

The newest version!
package com.github.smokestack.jpa;

public class MockNativeQuery extends MockBaseQuery {

	protected String sqlString;
	protected Class resultClass;
	protected String resultSetMapping;

	public MockNativeQuery(String sqlString) {
		this.sqlString=sqlString;
	}

	public MockNativeQuery(String sqlString, Class resultClass) {
		this.sqlString=sqlString;
		this.resultClass=resultClass;
	}

	public MockNativeQuery(String sqlString, String resultSetMapping) {
		this.sqlString=sqlString;
		this.resultSetMapping=resultSetMapping;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy