javax.jcr.query.qom.And Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Copyright 2009 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr.query.qom;
/**
* Performs a logical conjunction of two other constraints.
*
* To satisfy the And
constraint, a node-tuple must satisfy both
* {@link #getConstraint1 constraint1} and {@link #getConstraint2 constraint2}.
*
* @since JCR 2.0
*/
public interface And
extends Constraint {
/**
* Gets the first constraint.
*
* @return the constraint; non-null
*/
public Constraint getConstraint1();
/**
* Gets the second constraint.
*
* @return the constraint; non-null
*/
public Constraint getConstraint2();
}