diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-05-26 20:36:14 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-05-26 20:36:14 +0200 |
commit | d3a2fe5796e18493a8ff641308d2c6d21bfd06a4 (patch) | |
tree | f9e07f6309cf75bfbfe8d5cfe1bb8e21b861d8fa /src | |
parent | 56b5eae48072a05da28c35aff5fe719e057b13ad (diff) |
Fixed javadoc of HttpUploadHint
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/de/thedevstack/conversationsplus/xmpp/httpuploadim/HttpUploadHint.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/xmpp/httpuploadim/HttpUploadHint.java b/src/main/java/de/thedevstack/conversationsplus/xmpp/httpuploadim/HttpUploadHint.java index 3e9d7f2b..13fb5ad1 100644 --- a/src/main/java/de/thedevstack/conversationsplus/xmpp/httpuploadim/HttpUploadHint.java +++ b/src/main/java/de/thedevstack/conversationsplus/xmpp/httpuploadim/HttpUploadHint.java @@ -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() { |