/* * RHQ Management Platform * Copyright (C) 2005-2010 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.core.domain.resource.flyweight; import java.io.Serializable; import org.rhq.core.domain.resource.ResourceCategory; /** * A flyweight representation of the resource type intended for the display purposes. * * @author Lukas Krejci */ public class ResourceTypeFlyweight implements Serializable { private static final long serialVersionUID = 2L; private int id; private String name; private String plugin; private boolean singleton; private ResourceCategory category; private String subCategory; public ResourceTypeFlyweight() { } 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 getPlugin() { return plugin; } public void setPlugin(String plugin) { this.plugin = plugin; } public ResourceCategory getCategory() { return category; } public void setCategory(ResourceCategory resourceCategory) { this.category = resourceCategory; } public String getSubCategory() { return subCategory; } public void setSubCategory(String subCategory) { this.subCategory = subCategory; } public boolean isSingleton() { return singleton; } public void setSingleton(boolean singleton) { this.singleton = singleton; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || !(obj instanceof ResourceTypeFlyweight)) return false; ResourceTypeFlyweight that = (ResourceTypeFlyweight) obj; if (!this.name.equals(that.name)) return false; if (this.plugin != null ? !this.plugin.equals(that.plugin) : that.plugin != null) return false; return true; } @Override public int hashCode() { int result; if (name != null && this.plugin != null) { result = this.name.hashCode(); result = 31 * result + (this.plugin != null ? plugin.hashCode() : 0); } else { result = 31 * id; } return result; } @Override public String toString() { return "ResourceTypeFlyweight [id=" + id + ", name=" + name + ", plugin=" + plugin + "]"; } }