blob: d0191d81b0cdca25affd875d8a0b133cc2bf1844 [file] [log] [blame]
/**
* Copyright (c) 2018 CEA.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA - initial API and implementation and/or initial documentation
*/
package org.eclipse.sensinact.studio.http.client.snamessage.completelist;
import java.util.List;
/**
* @author Etienne Gandrille
*/
public class ObjectService {
private String name;
private List<ObjectResource> resources;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<ObjectResource> getResources() {
return resources;
}
public void setResources(List<ObjectResource> resources) {
this.resources = resources;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result + ((resources == null) ? 0 : resources.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ObjectService other = (ObjectService) obj;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (resources == null) {
if (other.resources != null)
return false;
} else if (!resources.equals(other.resources))
return false;
return true;
}
@Override
public String toString() {
return "ObjectService [name=" + name + ", resources=" + resources + "]";
}
}