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

com.jpaquery.core.impl.GroupPathImpl Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.jpaquery.core.impl;

import com.jpaquery.core.facade.GroupPath;

public class GroupPathImpl implements GroupPath {

	JpaQueryHandler finderHandler;
	JpaQueryImpl finderImpl;
	GroupImpl groupImpl;
	Object arg;

	public JpaQueryHandler getFinderHandler() {
		return finderHandler;
	}

	public JpaQueryImpl getFinderImpl() {
		return finderImpl;
	}

	public GroupImpl getGroupImpl() {
		return groupImpl;
	}

	public Object getArg() {
		return arg;
	}

	public GroupPathImpl(JpaQueryHandler finderHandler, JpaQueryImpl finderImpl,
			GroupImpl groupImpl, Object arg) {
		super();
		this.finderHandler = finderHandler;
		this.finderImpl = finderImpl;
		this.groupImpl = groupImpl;
		this.arg = arg;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy