aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/IqPacketParser.java
blob: eee5b0aadc13b6f366c6d57d73594cccafb4687e (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
44
45
46
47
48
49
50
51
52
package de.thedevstack.conversationsplus.xmpp;

import de.thedevstack.conversationsplus.xmpp.exceptions.MissingRequiredContentException;
import de.thedevstack.conversationsplus.xmpp.exceptions.MissingRequiredElementException;

import eu.siacs.conversations.xml.Element;

/**
 *
 */
public abstract class IqPacketParser {
    public static Element findRequiredChild(Element element, String elementName, String namespace) throws MissingRequiredElementException {
        Element child = findChild(element, elementName, namespace);
        if (child == null) {
            throw new MissingRequiredElementException(elementName, namespace, element);
        }
        return child;
    }

    public static Element findChild(Element element, String elementName, String namespace) {
        if (null == element) {
            return null;
        }
        return element.findChild(elementName, namespace);
    }

    public 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;
    }

    public static String findRequiredChildContent(Element element, String elementName, String namespace) throws MissingRequiredContentException {
        String childContent = findChildContent(element, elementName, namespace);
        if (null == childContent) {
            throw new MissingRequiredContentException(elementName, namespace, element);
        }
        return childContent;
    }

    public static String findChildContent(Element element, String elementName, String namespace) {
        if (null == element) {
            return null;
        }
        return element.findChildContent(elementName, namespace);
    }
}