1 /* 2 * Copyright (c) 2003 by The Jackass Team 3 * Licensed under the Open Software License version 2.0 4 */ 5 package ve.luz.ica.jackass.client; 6 7 import org.omg.CORBA.Object; 8 9 /** 10 * Provides an operation for obtaining all the proxies of a component. 11 * @author Guido Urdaneta, David Fernández 12 */ 13 interface SolverManager 14 { 15 /** 16 * Returns all the proxies of the specified component. 17 * @param componentID the ID of the component whose proxies are to be retrieved. 18 * @return an array with the proxy references. 19 */ 20 Object[] solve(String componentID); 21 } 22