summaryrefslogtreecommitdiffstats
blob: f62d26ae23d4c077f4bc2b3d66ef441c50e556f8 (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
/*
 * Copyright (c) 2011, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2011, Remko Tronçon.
 * All rights reserved.
 */
package com.isode.stroke.elements;

public class StreamResumed implements Element {

    public void setResumeID(String id) {
        resumeID = id;
    }

    public String getResumeID() {
        return resumeID;
    }

    public Long getHandledStanzasCount() {
        return handledStanzasCount;
    }

    public void setHandledStanzasCount(long i) {
        handledStanzasCount = i;
    }
    private String resumeID;
    private Long handledStanzasCount;
}