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

com.tangosol.config.xml.ConditionalElementProcessor Maven / Gradle / Ivy

There is a newer version: 24.09
Show newest version
/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.config.xml;

import com.tangosol.config.ConfigurationException;

import com.tangosol.run.xml.XmlElement;

/**
 * A {@link ConditionalElementProcessor} is an {@link ElementProcessor} that supports conditionally
 * processing {@link XmlElement}s.   Unlike a regular {@link ElementProcessor}, when a {@link ProcessingContext}
 * encounters a {@link ConditionalElementProcessor}, it will first query the said processor to
 * determine if it should process an {@link XmlElement}.
 *
 * @param   the type of value that will be returned by the {@link ConditionalElementProcessor},
 *             should an {@link XmlElement} be processed.
 *
 * @author bo  2013.09.14
 * @since Coherence 12.1.2
 */
public interface ConditionalElementProcessor
        extends ElementProcessor
    {
    /**
     * Determines if the specified {@link XmlElement} should be processed.
     *
     * @param context     the {@link ProcessingContext} in which the {@link XmlElement} is being processed
     * @param xmlElement  the {@link XmlElement} that would be processed
     *
     * @throws ConfigurationException when a configuration problem was encountered
     *
     * @return true if the {@link XmlElement} should be processed
     */
    public boolean accepts(ProcessingContext context, XmlElement xmlElement)
            throws ConfigurationException;
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy