m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pl/edu/mimuw/cloudatlas/client/AttributeInput.java
blob: b34468b02840b67998f2a389334466cab10b95c3 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package pl.edu.mimuw.cloudatlas.client;

import pl.edu.mimuw.cloudatlas.model.Value;

public class AttributeInput {
    private String zoneName;
    private String attributeName;
    private String valueString;
    private String attributeType;
    private String attributeComplexType;
    private Value value;

    public String getZoneName() {
        return zoneName;
    }

    public void setZoneName(String zoneName) {
        this.zoneName = zoneName;
    }

    public String getAttributeName() {
        return attributeName;
    }

    public void setAttributeName(String attributeName) {
        this.attributeName = attributeName;
    }

    public String getValueString() {
        return valueString;
    }

    public void setValueString(String valueString) {
        this.valueString = valueString;
    }

    public Value getValue() {
        return value;
    }

    public void setValue(Value value) {
        this.value = value;
    }

    public String getAttributeType() {
        return attributeType;
    }

    public void setAttributeType(String attributeType) {
        this.attributeType = attributeType;
    }

    public String getAttributeComplexType() {
        return attributeComplexType;
    }

    public void setAttributeComplexType(String attributeComplexType) {
        this.attributeComplexType = attributeComplexType;
    }
}