/* * RHQ Management Platform * Copyright (C) 2005-2012 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation, and/or the GNU Lesser * General Public License, version 2.1, also as published by the Free * Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License and the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU General Public License * and the GNU Lesser General Public License along with this program; * if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.rhq.modules.integrationTests.restApi.d; /** * EventSource for testing * @author Heiko W. Rupp */ public class EventSource { int id; String name; String location; int resourceId; String displayName; String description; public EventSource() { } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } public int getResourceId() { return resourceId; } public void setResourceId(int resourceId) { this.resourceId = resourceId; } public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; EventSource that = (EventSource) o; if (id != that.id) return false; if (resourceId != that.resourceId) return false; if (description != null ? !description.equals(that.description) : that.description != null) return false; if (displayName != null ? !displayName.equals(that.displayName) : that.displayName != null) return false; if (!location.equals(that.location)) return false; if (!name.equals(that.name)) return false; return true; } @Override public int hashCode() { int result = id; result = 31 * result + name.hashCode(); result = 31 * result + location.hashCode(); result = 31 * result + resourceId; result = 31 * result + (displayName != null ? displayName.hashCode() : 0); result = 31 * result + (description != null ? description.hashCode() : 0); return result; } }