blob: 02a962f356aa8a0aecd4070854551b0ab4ac9a9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package com.p4square.ccbapi.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
/**
* A user-defined pulldown field and the associated value.
*/
@XmlAccessorType(XmlAccessType.NONE)
public class CustomPulldownFieldValue extends CustomField {
@XmlElement(name="selection")
private PulldownSelection selection;
public PulldownSelection getSelection() {
return selection;
}
public void setSelection(final PulldownSelection selection) {
this.selection = selection;
}
}
|