The following code prevents classes from serialization:
public class MyClass implements Serializable
{
//you can write your code here
private void writeObject(ObjectOutputStream out) throws IOException
{
throw new NotSerializableException();
}
private Object readObject(ObjectInputStream in) throws IOException,
ClassNotFoundException
{
throw new NotSerializableException();
}
}