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

javax.jcr.query.qom.And Maven / Gradle / Ivy

/*
 * 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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy