1 package org.lsst.ccs.utilities.dispatch; 2 3 /** 4 * @author bamade 5 */ 6 // Date: 30/05/12 7 8 public interface Invoker { 9 public Object invoke(Object... args) throws Exception ; 10 }