blob: a1650e5e88c214beae589ee8b4d7a0f1087277c9 [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.lifecycle;
import org.eclipse.sensinact.studio.http.messages.snamessage.MsgCategory;
import org.eclipse.sensinact.studio.http.messages.snamessage.MsgSensinact;
/**
* @author Etienne Gandrille
*/
public class MsgServiceAppearing extends MsgSensinact {
public static final String KEY = "SERVICE_APPEARING";
private String type;
private String uri;
private ObjectNotification notification;
public MsgServiceAppearing() {
super(KEY);
}
@Override
public MsgCategory getCategory() {
return MsgCategory.LIFECYCLE;
}
public String getUri() {
return uri;
}
public void setUri(String uri) {
this.uri = uri;
}
public ObjectNotification getNotification() {
return notification;
}
public void setNotification(ObjectNotification notification) {
this.notification = notification;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((notification == null) ? 0 : notification.hashCode());
result = prime * result + ((type == null) ? 0 : type.hashCode());
result = prime * result + ((uri == null) ? 0 : uri.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;
MsgServiceAppearing other = (MsgServiceAppearing) obj;
if (notification == null) {
if (other.notification != null)
return false;
} else if (!notification.equals(other.notification))
return false;
if (type == null) {
if (other.type != null)
return false;
} else if (!type.equals(other.type))
return false;
if (uri == null) {
if (other.uri != null)
return false;
} else if (!uri.equals(other.uri))
return false;
return true;
}
@Override
public String toString() {
return "MsgServiceAppearing [type=" + type + ", uri=" + uri + ", notification=" + notification + "]";
}
}