mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
cdd78ecbe6
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1924 b35dd754-fafc-0310-a699-88a17e54d16e
14 lines
211 B
Java
14 lines
211 B
Java
package org.jivesoftware.smack.packet;
|
|
|
|
/**
|
|
*
|
|
* @author Matt Tucker
|
|
*/
|
|
public interface PacketExtension {
|
|
|
|
public String getElementName();
|
|
|
|
public String getNamespace();
|
|
|
|
public String toXML();
|
|
}
|