summaryrefslogtreecommitdiffstats
blob: c8ab2d96bea3669f03af13e94ae4f86acf97be7d (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
/*
* 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;

import com.isode.stroke.jid.JID;

public class MAMArchived extends Payload {
    public void setBy(JID by) {
        by_ = by;
    }
    
    public JID getBy() {
        return by_;
    }

    public void setID(String id) {
        id_ = id;
    }

    public String getID() {
        return id_;
    }
            
    private JID by_;
    private String id_;
}