/* * Copyright 2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.remoting.messagepack; import org.springframework.core.style.ToStringCreator; import java.util.HashSet; import java.util.Set; /** * Dummy entity with state to test RPC withc complex objects * * @author Josh Long */ public class Cat { private Set<Human> humans = new HashSet<Human>(); public Set<Cat> friends = new HashSet<Cat>(); public String name; public int age; public void addHuman(Human human) { this.humans.add(human); } public Set<Human> getHumans() { return humans; } public void setHumans(Set<Human> humans) { this.humans = humans; } public Set<Cat> getFriends() { return friends; } public void setFriends(Set<Cat> friends) { this.friends = friends; } public void addFriend(Cat c) { this.friends.add(c); } public Cat(String name, int age) { this.name = name; this.age = age; } public Cat() { } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String toString() { return new ToStringCreator(this) .append("friends", this.getFriends()) .append("name", this.getName()) .append("age", this.getAge()) .append("humans", this.getHumans()) .toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Cat cat = (Cat) o; if (age != cat.age) { return false; } if (friends != null ? !friends.equals(cat.friends) : cat.friends != null) { return false; } if (humans != null ? !humans.equals(cat.humans) : cat.humans != null) { return false; } if (name != null ? !name.equals(cat.name) : cat.name != null) { return false; } return true; } @Override public int hashCode() { int result = humans != null ? humans.hashCode() : 0; result = 31 * result + (friends != null ? friends.hashCode() : 0); result = 31 * result + (name != null ? name.hashCode() : 0); result = 31 * result + age; return result; } }