Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / util / MapElement.java @ 60:1cff9a56093f

History | View | Annotate | Download (315 Bytes)

1 40:29d3fc38fdee hadi
package my.com.upass.util;
2
3
import javax.xml.bind.annotation.XmlElement;
4
5
public class MapElement {
6
7
        @XmlElement
8
        public String key;
9
10
        @XmlElement
11
        public String value;
12
13
        //
14
15
        private MapElement() {
16
        } // Required by JAXB
17
18
        public MapElement(String key, String value) {
19
                this.key = key;
20
                this.value = value;
21
        }
22
}