aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/forms/Field.java
blob: 0509d47345cdb8f1d06fd00b1056bff82b1b5825 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package de.thedevstack.conversationsplus.xmpp.forms;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import de.thedevstack.conversationsplus.xml.Element;

public class Field extends Element {

	public Field(String name) {
		super("field");
		this.setAttribute("var",name);
	}

	private Field() {
		super("field");
	}

	public String getFieldName() {
		return this.getAttribute("var");
	}

	public void setValue(String value) {
		this.clearChildren();
		this.addChild("value").setContent(value);
	}

	public void setValues(Collection<String> values) {
		this.clearChildren();
		for(String value : values) {
			this.addChild("value").setContent(value);
		}
	}

	public void removeNonValueChildren() {
		for(Iterator<Element> iterator = this.children.iterator(); iterator.hasNext();) {
			Element element = iterator.next();
			if (!element.getName().equals("value")) {
				iterator.remove();
			}
		}
	}

	public static Field parse(Element element) {
		Field field = new Field();
		field.setAttributes(element.getAttributes());
		field.setChildren(element.getChildren());
		return field;
	}

	public String getValue() {
		return findChildContent("value");
	}

	public List<String> getValues() {
		List<String> values = new ArrayList<>();
		for(Element child : getChildren()) {
			if ("value".equals(child.getName())) {
				String content = child.getContent();
				if (content != null) {
					values.add(content);
				}
			}
		}
		return values;
	}

	public String getLabel() {
		return getAttribute("label");
	}

	public String getType() {
		return getAttribute("type");
	}

	public boolean isRequired() {
		return hasChild("required");
	}
}