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; } }