/* * Copyright 2013-2016 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.integration.json; /** * @author Mark Fisher * @since 2.0 */ public class TestPerson { private volatile String firstName; private volatile String lastName; private volatile int age; private volatile TestAddress address; public TestPerson() { } public TestPerson(String firstName, String lastName, int age) { this.firstName = firstName; this.lastName = lastName; this.age = age; } public String getFirstName() { return this.firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public void setLastName(String lastName) { this.lastName = lastName; } public String getLastName() { return this.lastName; } public void setAge(int age) { this.age = age; } public int getAge() { return this.age; } public void setAddress(TestAddress address) { this.address = address; } public TestAddress getAddress() { return this.address; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TestPerson that = (TestPerson) o; if (age != that.age) { return false; } if (address != null ? !address.equals(that.address) : that.address != null) { return false; } if (firstName != null ? !firstName.equals(that.firstName) : that.firstName != null) { return false; } if (lastName != null ? !lastName.equals(that.lastName) : that.lastName != null) { return false; } return true; } @Override public int hashCode() { int result = firstName != null ? firstName.hashCode() : 0; result = 31 * result + (lastName != null ? lastName.hashCode() : 0); result = 31 * result + age; result = 31 * result + (address != null ? address.hashCode() : 0); return result; } @Override public String toString() { return "name=" + this.firstName + " " + this.lastName + ", age=" + this.age + ", address=" + this.address; } }