001package de.cuioss.test.jsf.config;
002
003import de.cuioss.test.jsf.config.decorator.RequestConfigDecorator;
004
005/**
006 * Instances of this are to be called by the test framework <em>after</em> the
007 * initial setup is done.
008 *
009 * @author Oliver Wolff
010 */
011public interface RequestConfigurator extends JsfTestContextConfigurator {
012
013    /**
014     * Callback method for interacting with the {@link RequestConfigDecorator} at
015     * the correct time.
016     *
017     * @param decorator is never null
018     */
019    void configureRequest(RequestConfigDecorator decorator);
020}