summaryrefslogtreecommitdiffstats
blob: 65c52162ee50fd1a34269ad5d0ada5adcd1157cc (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
30
31
/*
 * Copyright (c) 2015, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2011 Vlad Voicu
 * Licensed under the Simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */
package com.isode.stroke.elements;

public class Replace extends Payload {
	private String replaceID_;
	
	public Replace() {
		this("");
	}
	
	public Replace(String id) {
		replaceID_ = id;
	}
	
	public String getID() {
		return replaceID_;
	}
	
	public void setID(String id) {
		replaceID_ = id;
	}

}