aboutsummaryrefslogtreecommitdiffstats
path: root/conversations/src/main/java/eu/siacs/conversations/xmpp/stanzas/AbstractStanza.java
blob: eef41c791ba8e2b7c143bc49a150e1a8e5e3b6d7 (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
32
33
34
package eu.siacs.conversations.xmpp.stanzas;

import eu.siacs.conversations.xml.Element;

public class AbstractStanza extends Element {

	protected AbstractStanza(String name) {
		super(name);
	}

	public String getTo() {
		return getAttribute("to");
	}

	public String getFrom() {
		return getAttribute("from");
	}

	public String getId() {
		return this.getAttribute("id");
	}

	public void setTo(String to) {
		setAttribute("to", to);
	}

	public void setFrom(String from) {
		setAttribute("from", from);
	}

	public void setId(String id) {
		setAttribute("id", id);
	}
}