![JAR search and dependency download from the Maven repository](/logo.png)
javax.jcr.query.qom.ChildNodeJoinCondition 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;
/**
* Tests whether the {@link #getChildSelectorName childSelector} node is a child
* of the {@link #getParentSelectorName parentSelector} node. A node-tuple
* satisfies the constraint only if:
* childSelectorNode.getParent().isSame(parentSelectorNode)
* would return true, where childSelectorNode
is the node for
* {@link #getChildSelectorName childSelector} and parentSelectorNode
* is the node for {@link #getParentSelectorName parentSelector}.
*
* @since JCR 2.0
*/
public interface ChildNodeJoinCondition
extends JoinCondition {
/**
* Gets the name of the child selector.
*
* @return the selector name; non-null
*/
public String getChildSelectorName();
/**
* Gets the name of the parent selector.
*
* @return the selector name; non-null
*/
public String getParentSelectorName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy