FileDocCategorySizeDatePackage
FilterQueryPlan.javaAPI DocHibernate 3.2.5788Fri Nov 04 14:28:50 GMT 2005org.hibernate.engine.query

FilterQueryPlan

public class FilterQueryPlan extends HQLQueryPlan implements Serializable
Extends an HQLQueryPlan to maintain a reference to the collection-role name being filtered.
author
Steve Ebersole

Fields Summary
private final String
collectionRole
Constructors Summary
public FilterQueryPlan(String hql, String collectionRole, boolean shallow, Map enabledFilters, org.hibernate.engine.SessionFactoryImplementor factory)

		super( hql, collectionRole, shallow, enabledFilters, factory );
		this.collectionRole = collectionRole;
	
Methods Summary
public java.lang.StringgetCollectionRole()

		return collectionRole;