blob: 7254b8cbd39f472d8d9b9da08ecd3cd2746cf9b5 [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;
import org.json.JSONObject;
/**
* @author Etienne Gandrille
*/
public abstract class UpdateMessage extends SnaMessage {
public UpdateMessage(JSONObject json) {
super(json);
}
}