summaryrefslogtreecommitdiffstats
blob: ebc39e884200df45cfe0dec09c4c85f8f2737a86 (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
/*
* Copyright (c) 2014 Kevin Smith and Remko Tronçon
* All rights reserved.
*/

/*
* Copyright (c) 2014, Isode Limited, London, England.
* All rights reserved.
*/

package com.isode.stroke.elements;

public class MAMFin extends Payload {

    private boolean isComplete_;
    
    private boolean isStable_;
    
    private ResultSet resultSet_;
    
    private String queryID_;
    
    public MAMFin() {
        isComplete_ = false;
        isStable_ = true;
    }

    public boolean isComplete() {
        return isComplete_;
    }

    public void setComplete(boolean isComplete) {
        this.isComplete_ = isComplete;
    }

    public boolean isStable() {
        return isStable_;
    }

    public void setStable(boolean isStable) {
        this.isStable_ = isStable;
    }

    public ResultSet getResultSet() {
        return resultSet_;
    }

    public void setResultSet(ResultSet resultSet) {
        this.resultSet_ = resultSet;
    }

    public String getQueryID() {
        return queryID_;
    }

    public void setQueryID(String queryID) {
        this.queryID_ = queryID;
    }
    
}