package com.devicehive.model.eventbus;
/*
* #%L
* DeviceHive Common Module
* %%
* Copyright (C) 2016 DataArt
* %%
* 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;
/**
* Event bus subscription object. Represents subscriptions for all types of events - notification, commands and command updates.
*/
public class Subscription {
private String type;
private String guid;
private String name;
/**
* @param type - type of event to subscribe to (notification, command, command update)
* @param guid - guid of event to subscribe to (id of device, command)
*/
public Subscription(String type, String guid) {
this.type = type;
this.guid = guid;
}
/**
* @param type - type of event to subscribe to (notification, command, command update)
* @param guid - guid of event to subscribe to (id of device, command)
* @param name - specific event name to subscribe to (notification name, command name)
*/
public Subscription(String type, String guid, String name) {
this.type = type;
this.guid = guid;
this.name = name;
}
public String getType() {
return type;
}
public String getGuid() {
return guid;
}
public String getName() {
return name;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Subscription)) return false;
Subscription that = (Subscription) o;
return Objects.equals(type, that.type) &&
Objects.equals(guid, that.guid) &&
Objects.equals(name, that.name);
}
@Override
public int hashCode() {
return Objects.hash(type, guid, name);
}
@Override
public String toString() {
return "Subscription{" +
"type='" + type + '\'' +
", guid='" + guid + '\'' +
", name='" + name + '\'' +
'}';
}
}