summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/web/XmlFilterEntry.java
blob: 1c733f9fc4c038a379d65f7e8f410f81521850a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openslx.bwlp.sat.web;

import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;

public class XmlFilterEntry {

	@Attribute(required = false)
	private String type;
	@Element
	private String key;
	@Element
	private String value;

	public XmlFilterEntry(String type, String key, String value) {
		this.type = type;
		this.key = key;
		this.value = value;
	}

}