package com.thinkbiganalytics.nifi.rest.model; /*- * #%L * thinkbig-nifi-rest-model * %% * Copyright (C) 2017 ThinkBig Analytics * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ import java.util.Objects; /** * The allowable values for a property with a constrained set of options. */ public class NiFiAllowableValue { private String displayName; private String value; private String description; /** * @return the human-readable value that is allowed for this PropertyDescriptor */ public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } /** * @return the value for this allowable value */ public String getValue() { return value; } public void setValue(String value) { this.value = value; } /** * @return a description of this Allowable Value, or {@code null} if no description is given */ public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @Override public boolean equals(Object obj) { if (obj instanceof NiFiAllowableValue) { return Objects.equals(value, ((NiFiAllowableValue) obj).value); } return false; } @Override public int hashCode() { return Objects.hashCode(value); } }