1 package org.bsf.smartValueObject.mediator;2 3 import java.util.Collection ;4 5 /**6 * Configuration for mediators.7 * 8 */9 public interface MediatorConfig {10 /**11 * Gets classes of the VOs.12 * @return13 */14 Collection getClasses();15 }16