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

com.day.cq.commons.predicate.IsHierarchyNodePredicate Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * 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 org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.jcr.Node;
import javax.jcr.RepositoryException;

/**
 * Predicate used to filter hierarchy nodes.
 * @deprecated use  {@link com.day.cq.commons.predicates.IsHierarchyNodePredicate} instead
 */
@Component(metatype = false)
@Service(Predicate.class)
@Properties({
        @Property(name = "predicate.name", value = "hierarchy")
})
@Deprecated
public class IsHierarchyNodePredicate extends AbstractNodePredicate implements Predicate {
    private final Logger log = LoggerFactory.getLogger(IsHierarchyNodePredicate.class);

    /**
     * {@inheritDoc}
     *
     * @return true if node is an nt:hierarchyNode.
     * @deprecated use  {@link com.day.cq.commons.predicates.IsHierarchyNodePredicate#test(Node)} instead
     */
    @Deprecated
    public boolean evaluate(Node node) throws RepositoryException {
        log.warn("IsHierarchyNodePredicate has been deprecated. Please use com.day.cq.commons.predicates.IsHierarchyNodePredicate instead.");
        return node.isNodeType(JcrConstants.NT_HIERARCHYNODE);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy