summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/ccbapi/model/CustomTextFieldValue.java
blob: 71595e3d7c4e0b124301d2f58744f872d503c9cf (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 text field and the associated value.
 */
@XmlAccessorType(XmlAccessType.NONE)
public class CustomTextFieldValue extends CustomField {

    @XmlElement(name="text")
    private String text;

    public String getText() {
        return text;
    }

    public void setText(final String text) {
        this.text = text;
    }
}