org.gvnix.addon.geo.addon.MapsProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.gvnix.addon.geo.addon Show documentation
Show all versions of org.gvnix.addon.geo.addon Show documentation
GEO components for gvNIX Projects
The newest version!
/*
* gvNIX is an open source tool for rapid application development (RAD).
* Copyright (C) 2010 Generalitat Valenciana
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* 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 for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see .
*/
package org.gvnix.addon.geo.addon;
import org.apache.commons.lang3.ObjectUtils;
/**
* @author DISID Corporation S.L. made for General Directorate for Information
* Technologies (DGTI)
*/
public class MapsProperty {
private String key;
private String value;
public MapsProperty(String key, String value) {
super();
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
/** {@inheritDoc} */
@Override
public String toString() {
return "MapProperty [key=" + key + ", value=" + value + "]";
}
/**
* {@inheritDoc} Two properties are equal if their key and value are equals.
*/
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
MapsProperty other = (MapsProperty) obj;
if (!ObjectUtils.equals(key, other.key)) {
return false;
}
if (!ObjectUtils.equals(value, other.value)) {
return false;
}
return true;
}
/** {@inheritDoc} */
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((key == null) ? 0 : key.hashCode());
result = prime * result + ((value == null) ? 0 : value.hashCode());
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy