blob: 13fb5ad1f65c32de2059ed50fdcb0df9c758d18a (
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
|
package de.thedevstack.conversationsplus.xmpp.httpuploadim;
import de.thedevstack.conversationsplus.xml.Element;
/**
* Representation of the HttpUploadHint.
* <pre>
* <httpupload xmlns="urn:xmpp:hints"/>
* </pre>
*/
public class HttpUploadHint extends Element {
/**
* The namespace of message processing hints as defined in XEP-0334.
* @see <a href="http://xmpp.org/extensions/xep-0334.html">http://xmpp.org/extensions/xep-0334.html</a>
*/
public static final String NAMESPACE = "urn:xmpp:hints";
/**
* The element name of the hint for an http upload.
*/
public static final String ELEMENT_NAME = "httpupload";
public HttpUploadHint() {
super(ELEMENT_NAME, NAMESPACE);
}
}
|