/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.foo; import java.io.Serializable; /** * Class used to test serialization */ public class SerializableClass implements Serializable { private String name = "unknown"; public void setName(String name) { this.name = name; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SerializableClass that = (SerializableClass) o; if (name != null ? !name.equals(that.name) : that.name != null) { return false; } return true; } @Override public int hashCode() { return name != null ? name.hashCode() : 0; } public String getName() { return name; } }