Fixed javadoc of HttpUploadHint

This commit is contained in:
steckbrief 2016-05-26 20:36:14 +02:00
parent 56b5eae480
commit d3a2fe5796

View file

@ -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() {