blob: b10446b013b07e5c011437a60585293173c07b22 [file] [log] [blame]
/**
* Copyright (c) 2019 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.messages.snamessage.describeresource;
import java.util.List;
/**
* @author Etienne Gandrille
*/
public class ObjectParameter {
private String name;
private boolean fixed;
private String type;
List<ObjectConstraint> constraints;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isFixed() {
return fixed;
}
public void setFixed(boolean fixed) {
this.fixed = fixed;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public List<ObjectConstraint> getConstraints() {
return constraints;
}
public void setConstraints(List<ObjectConstraint> constraints) {
this.constraints = constraints;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((constraints == null) ? 0 : constraints.hashCode());
result = prime * result + (fixed ? 1231 : 1237);
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result + ((type == null) ? 0 : type.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;
ObjectParameter other = (ObjectParameter) obj;
if (constraints == null) {
if (other.constraints != null)
return false;
} else if (!constraints.equals(other.constraints))
return false;
if (fixed != other.fixed)
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (type == null) {
if (other.type != null)
return false;
} else if (!type.equals(other.type))
return false;
return true;
}
@Override
public String toString() {
return "ObjectParameter [name=" + name + ", fixed=" + fixed + ", type=" + type + ", constraints=" + constraints
+ "]";
}
}