blob: d47384981d507ac2fa3a55cd250e40e46d263dd8 (
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
|
package com.p4square.ccbapi.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlValue;
/**
* A pull down field option.
*/
@XmlAccessorType(XmlAccessType.NONE)
public class PulldownSelection {
@XmlAttribute(name="id")
private int id;
@XmlValue
private String label;
public int getId() {
return id;
}
public void setId(final int id) {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(final String label) {
this.label = label;
}
}
|