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

import java.io.IOException;

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

public class ConnectRequestMessage extends PahoMessage {

	private static final long serialVersionUID = 3750692684824242655L;

	public ConnectRequestMessage(PahoID fromID, PahoID targetID, Object data)
			throws IOException {
		super(fromID, targetID, serialize(data));
	}

}

Back to the top