aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/filetransfer/http/upload/HttpUploadSlot.java
blob: 1e320afecedbeaf1cda1706f40ebb0c83b606045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package de.thedevstack.conversationsplus.xmpp.filetransfer.http.upload;

/**
 *
 */
public class HttpUploadSlot {
    private final String getUrl;
    private final String putUrl;

    public HttpUploadSlot(String getUrl, String putUrl) {
        this.getUrl = getUrl;
        this.putUrl = putUrl;
    }

    public String getGetUrl() {
        return this.getUrl;
    }

    public String getPutUrl() {
        return this.putUrl;
    }
}