2003-07-31 22:46:52 +02:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
*
|
2007-02-12 01:59:05 +01:00
|
|
|
* Copyright 2003-2007 Jive Software.
|
2003-07-31 22:46:52 +02:00
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2003-07-31 22:46:52 +02:00
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2003-07-31 22:46:52 +02:00
|
|
|
*
|
2004-11-03 00:53:30 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2003-07-31 22:46:52 +02:00
|
|
|
*/
|
|
|
|
|
2003-05-08 17:53:40 +02:00
|
|
|
package org.jivesoftware.smack.packet;
|
|
|
|
|
|
|
|
/**
|
2003-07-31 22:46:52 +02:00
|
|
|
* Interface to represent packet extensions. A packet extension is an XML subdocument
|
|
|
|
* with a root element name and namespace. Packet extensions are used to provide
|
|
|
|
* extended functionality beyond what is in the base XMPP specification. Examples of
|
|
|
|
* packet extensions include message events, message properties, and extra presence data.
|
|
|
|
* IQ packets cannot contain packet extensions.
|
2003-05-08 17:53:40 +02:00
|
|
|
*
|
2003-07-31 22:46:52 +02:00
|
|
|
* @see DefaultPacketExtension
|
|
|
|
* @see org.jivesoftware.smack.provider.PacketExtensionProvider
|
2003-05-08 17:53:40 +02:00
|
|
|
* @author Matt Tucker
|
|
|
|
*/
|
|
|
|
public interface PacketExtension {
|
|
|
|
|
2003-07-31 22:46:52 +02:00
|
|
|
/**
|
|
|
|
* Returns the root element name.
|
|
|
|
*
|
|
|
|
* @return the element name.
|
|
|
|
*/
|
2003-05-08 17:53:40 +02:00
|
|
|
public String getElementName();
|
|
|
|
|
2003-07-31 22:46:52 +02:00
|
|
|
/**
|
|
|
|
* Returns the root element XML namespace.
|
|
|
|
*
|
|
|
|
* @return the namespace.
|
|
|
|
*/
|
2003-05-08 17:53:40 +02:00
|
|
|
public String getNamespace();
|
|
|
|
|
2003-07-31 22:46:52 +02:00
|
|
|
/**
|
2009-12-09 21:29:48 +01:00
|
|
|
* Returns the XML representation of the PacketExtension.
|
2003-07-31 22:46:52 +02:00
|
|
|
*
|
|
|
|
* @return the packet extension as XML.
|
|
|
|
*/
|
2003-05-08 17:53:40 +02:00
|
|
|
public String toXML();
|
|
|
|
}
|