package de.thedevstack.conversationsplus.xmpp.httpuploadim; import eu.siacs.conversations.xml.Element; /** * Representation of the HttpUploadHint. *
 *  
 * 
*/ public class HttpUploadHint extends Element { /** * The namespace of message processing hints as defined in XEP-0334. * @see http://xmpp.org/extensions/xep-0334.html */ 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); } }