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

com.wesleyhome.dao.processor.model.NamedQueryInformation Maven / Gradle / Ivy

package com.wesleyhome.dao.processor.model;

import java.util.List;

public class NamedQueryInformation {

	public final String namedQueryName;
	public final List paramInfoList;
	public final ReturnInfo returnInfo;

	public NamedQueryInformation(final String namedQueryName, final List paramInfoList, final ReturnInfo returnInfo) {
		super();
		this.namedQueryName = namedQueryName;
		this.paramInfoList = paramInfoList;
		this.returnInfo = returnInfo;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy