1 package org.apache.slide.projector; 2 3 import org.apache.slide.projector.value.StreamableValue; 4 5 public interface ConfigurableProcessor extends Processor { 6 /** 7 * This method is called before the first invokation of the process method 8 * occurs. 9 * 10 * @param config the resource containing the configuration of the processor 11 * @throws ConfigurationException is thrown, if the processor 12 * could not be configured properly by the given resource 13 */ 14 void configure(StreamableValue config) throws ConfigurationException; 15 }