| NotSerializable.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.hello.interfaces;
import java.io.Serializable;
/**
* @author adrian@jboss.org
* @version $Revision: 1.2.6.2 $
*/
public class NotSerializable implements Serializable
{
static final long serialVersionUID = 8485112655162831735L;
// This means the class fails to implement serializable correctly
public Object bad = new Object();
}
| NotSerializable.java |