Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7b76fb17485e7cd3408ec33825db0ce40f287c37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.ecf.provider.mqtt.paho.container;

import java.io.Serializable;

import org.eclipse.ecf.provider.mqtt.paho.identity.PahoID;

public class SyncResponseMessage extends PahoMessage {

	private static final long serialVersionUID = 4085439339371979310L;

	public SyncResponseMessage(PahoID fromID, PahoID targetID, Serializable data) {
		super(fromID, targetID, data);
	}

}

Back to the top