blob: 56df13c96f53021cd7076dd8399aa2f9e10d5baa [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* 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:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.core.message;
import org.eclipse.sensinact.gateway.common.bundle.Mediator;
/**
* Extended notification message dedicated to update events
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
public class SnaRemoteMessageImpl extends SnaNotificationMessageImpl<SnaRemoteMessage.Remote>
implements SnaRemoteMessage {
/**
* Constructor
*
* @param mediator
* @param uri
* @param type
*/
public SnaRemoteMessageImpl(Mediator mediator, String uri, Remote type) {
super(mediator, uri, type);
}
}