blob: d777cb641dd896d3214af80104535ddec2472547 (
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
35
36
37
38
39
40
41
42
43
|
package de.thedevstack.conversationsplus.xmpp;
import de.thedevstack.conversationsplus.xml.Element;
import de.thedevstack.conversationsplus.xmpp.exceptions.MissingRequiredContentException;
import de.thedevstack.conversationsplus.xmpp.exceptions.MissingRequiredElementException;
/**
*
*/
public abstract class AbstractIqPacketParser {
protected static Element findRequiredChild(Element element, String elementName, String namespace) throws MissingRequiredElementException {
if (null == element) {
return null;
}
Element child = element.findChild(elementName, namespace);
if (child == null) {
throw new MissingRequiredElementException(elementName, namespace, element);
}
return child;
}
protected static String findRequiredChildContent(Element element, String elementName) throws MissingRequiredContentException {
if (null == element) {
return null;
}
String childContent = element.findChildContent(elementName);
if (null == childContent) {
throw new MissingRequiredContentException(elementName, element);
}
return childContent;
}
protected static String findRequiredChildContent(Element element, String elementName, String namespace) throws MissingRequiredContentException {
if (null == element) {
return null;
}
String childContent = element.findChildContent(elementName, namespace);
if (null == childContent) {
throw new MissingRequiredContentException(elementName, namespace, element);
}
return childContent;
}
}
|