1 /*2 * JBoss, the OpenSource J2EE webOS3 * 4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.cache.statetransfer;8 9 import org.jboss.cache.Node;10 11 import java.io.ObjectInputStream ;12 13 public interface StateTransferIntegrator14 {15 16 void integrateState(ObjectInputStream ois, Node target, ClassLoader cl) throws Exception ;17 18 }