com.day.cq.commons.predicate.IsFolderPredicate Maven / Gradle / Ivy
/*
* Copyright 1997-2008 Day Management AG
* Barfuesserplatz 6, 4001 Basel, Switzerland
* All Rights Reserved.
*
* This software is the confidential and proprietary information of
* Day Management AG, ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Day.
*/
package com.day.cq.commons.predicate;
import com.day.cq.commons.jcr.JcrConstants;
import org.apache.commons.collections.Predicate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
/**
* Predicate used to filter folder nodes.
*/
@Component(metatype = false)
@Service(Predicate.class)
@Properties({
@Property(name = "predicate.name", value = "folder")
})
public class IsFolderPredicate extends AbstractNodePredicate implements Predicate {
/**
* {@inheritDoc}
*
* @return true
if node is or extends nt:folder
*/
public boolean evaluate(Node node) throws RepositoryException {
return node.isNodeType(JcrConstants.NT_FOLDER);
}
}