summaryrefslogtreecommitdiffstats
blob: 4eba5ca512a06d116af3634ed1743d441e3901f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
* Copyright (c) 2014, Isode Limited, London, England.
* All rights reserved.
*/
/*
* Copyright (c) 2014, Remko Tronçon.
* All rights reserved.
*/

package com.isode.stroke.elements;

import com.isode.stroke.elements.Payload;

public class PubSubEventRetract extends Payload {

public PubSubEventRetract() {
}

public String getID() {
	return id_;
}

public void setID(String id) {
	id_ = id;
}

String id_;

}