001package de.cuioss.test.jsf.config; 002 003import de.cuioss.test.jsf.config.decorator.ApplicationConfigDecorator; 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 ApplicationConfigurator extends JsfTestContextConfigurator { 012 013 /** 014 * Callback method for interacting with the {@link ApplicationConfigDecorator} 015 * at the correct time. 016 * 017 * @param decorator is never null 018 */ 019 void configureApplication(ApplicationConfigDecorator decorator); 020}