aboutsummaryrefslogtreecommitdiff
path: root/ufund-api/src/main/java/com/ufund/api/ufundapi/Need.java
blob: b75b9ed53107684b968d0d1ef23fbd75ea2f5639 (plain) (blame)
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
package com.ufund.api.ufundapi;

public class Need {

    public enum GoalType {
        MONETARY,
        PHYSICAL
    }

    String name;
    String[] filterAttributes;
    GoalType type;
    double maxGoal;
    double current;

    public Need(String name, double maxGoal, GoalType type) {
        this.name = name;
        this.maxGoal = maxGoal;
        this.type = type;
    }

    public String getName() {
        return name;
    }

    public String[] getFilterAttributes() {
        return filterAttributes;
    }

    public GoalType getType() {
        return type;
    }

    public double getMaxGoal() {
        return maxGoal;
    }

    public double getCurrent() {
        return current;
    }

    public void setCurrent(double current) {
        this.current = current;
    }

    public void setFilterAttributes(String[] filterAttributes) {
        this.filterAttributes = filterAttributes;
    }

    public void setMaxGoal(double maxGoal) {
        this.maxGoal = maxGoal;
    }

    public void setName(String name) {
        this.name = name;
    }
}