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.adwt.service;8 9 import java.net.URL ;10 11 /**12 * Description of the Class13 *14 * @author Laurent Etiemble15 * @version $Revision: 1.5 $16 * @todo Javadoc to complete17 */18 public interface HistoryService19 {20 /**21 * Description of the Method22 *23 * @param url Description of Parameter24 * @param context Description of Parameter25 */26 public void push(URL url, Object context);27 28 29 /**30 * Description of the Class31 *32 * @author letiembl33 * @version $Revision: 1.5 $34 */35 public interface Holder36 {37 /**38 * Description of the Method39 *40 * @param url Description of Parameter41 * @param context Description of Parameter42 */43 public void loadResource(URL url, Object context);44 }45 }46