1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 package org.jboss.cache.aop;9 10 import java.io.ObjectStreamException ;11 12 /**13 * @author <a HREF="mailto:harald@gliebe.de">Harald Gliebe</a>14 */15 16 public interface WriteReplaceable17 {18 19 Object writeReplace() throws ObjectStreamException ;20 21 }22