blob: f9a5fa88ce9144252ac61cf75a3a9a69dbbf688a [file] [log] [blame]
/**
* Copyright (c) 2017 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.client.snamessage.gateway;
import org.eclipse.sensinact.studio.http.client.snamessage.LifecycleMessage;
import org.json.JSONException;
import org.json.JSONObject;
/**
* @author Etienne Gandrille
*/
public class LifecycleResourceDisappearing extends LifecycleMessage {
public static final String KEY = "RESOURCE_DISAPPEARING";
public LifecycleResourceDisappearing(JSONObject message) throws JSONException {
super(message,KEY, toTab(message.getString("uri")), 3);
}
@Override
public String getProvider() {
return super.getProvider();
}
@Override
public String getService() {
return super.getService();
}
@Override
public String getResource() {
return super.getResource();
}
}