1 /*2 * EJTools, the Enterprise Java Tools3 *4 * Distributable under LGPL license.5 * See terms of license at www.gnu.org.6 */7 package org.ejtools.graph.service;8 9 10 /**11 * @author Laurent Etiemble12 * @version $Revision: 1.4 $13 */14 public interface GraphConsumerMediator15 {16 /**17 * Gets the graphConsumers attribute of the GraphMediator object18 *19 * @return The graphConsumers value20 */21 public GraphConsumer[] getGraphConsumers();22 }23