/** * Copyright © 2016-2017 The Thingsboard Authors * * 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. */ package org.thingsboard.server.extensions.core.plugin.telemetry.sub; import lombok.AllArgsConstructor; import lombok.Data; import lombok.Getter; import org.thingsboard.server.common.data.id.DeviceId; import java.util.Map; /** * @author Andrew Shvayka */ @AllArgsConstructor public class SubscriptionState { @Getter private final String wsSessionId; @Getter private final int subscriptionId; @Getter private final DeviceId deviceId; @Getter private final SubscriptionType type; @Getter private final boolean allKeys; @Getter private final Map<String, Long> keyStates; @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; SubscriptionState that = (SubscriptionState) o; if (subscriptionId != that.subscriptionId) return false; if (wsSessionId != null ? !wsSessionId.equals(that.wsSessionId) : that.wsSessionId != null) return false; if (deviceId != null ? !deviceId.equals(that.deviceId) : that.deviceId != null) return false; return type == that.type; } @Override public int hashCode() { int result = wsSessionId != null ? wsSessionId.hashCode() : 0; result = 31 * result + subscriptionId; result = 31 * result + (deviceId != null ? deviceId.hashCode() : 0); result = 31 * result + (type != null ? type.hashCode() : 0); return result; } @Override public String toString() { return "SubscriptionState{" + "type=" + type + ", deviceId=" + deviceId + ", subscriptionId=" + subscriptionId + ", wsSessionId='" + wsSessionId + '\'' + '}'; } }