io.vlingo.xoom.auth.model.Constraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xoom-auth Show documentation
Show all versions of xoom-auth Show documentation
The reactive, scalable, and resilient authentication and authorization service for VLINGO XOOM Platform
components, and also suitable for hosted platform services and applications.
// Copyright © 2012-2021 VLINGO LABS. All rights reserved.
//
// This Source Code Form is subject to the terms of the
// Mozilla Public License, v. 2.0. If a copy of the MPL
// was not distributed with this file, You can obtain
// one at https://mozilla.org/MPL/2.0/.
package io.vlingo.xoom.auth.model;
public final class Constraint {
public enum Type { String, Integer, Double, Boolean }
public final String description;
public final String name;
public final Type type;
public final String value;
public static Constraint of(final Type type, final String name, final String value, final String description) {
return new Constraint(type, name, value, description);
}
public Constraint(final Type type, final String name, final String value, final String description) {
this.type = type;
this.name = name;
this.value = value;
this.description = description;
}
@Override
public int hashCode() {
return 31 * (type.hashCode() + name.hashCode() + value.hashCode() + description.hashCode());
}
@Override
public boolean equals(final Object other) {
if (other == null || other.getClass() != Constraint.class) {
return false;
}
final Constraint otherConstraint = (Constraint) other;
return this.type == otherConstraint.type && this.name.equals(otherConstraint.name) && this.value.equals(otherConstraint.value) && this.description.equals(otherConstraint.description);
}
@Override
public String toString() {
return "Constraint[type=" + type + " name=" + name + " value=" + value + " description=" + description + "]";
}
}