Fixed javadoc of HttpUploadHint
This commit is contained in:
parent
56b5eae480
commit
d3a2fe5796
1 changed files with 11 additions and 1 deletions
|
@ -3,10 +3,20 @@ package de.thedevstack.conversationsplus.xmpp.httpuploadim;
|
|||
import de.thedevstack.conversationsplus.xml.Element;
|
||||
|
||||
/**
|
||||
* Created by steckbrief on 17.04.2016.
|
||||
* 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() {
|
||||
|
|
Loading…
Reference in a new issue