Class JivePropertiesExtensionProvider
java.lang.Object
org.jivesoftware.smack.provider.AbstractProvider<E>
org.jivesoftware.smack.provider.Provider<E>
org.jivesoftware.smack.provider.ExtensionElementProvider<JivePropertiesExtension>
org.jivesoftware.smackx.jiveproperties.provider.JivePropertiesExtensionProvider
public class JivePropertiesExtensionProvider
extends ExtensionElementProvider<JivePropertiesExtension>
-
Nested Class Summary
Nested classes/interfaces inherited from class org.jivesoftware.smack.provider.AbstractProvider
AbstractProvider.NumberFormatParseException, AbstractProvider.TextParseException, AbstractProvider.WrappableParser<E>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionparse
(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) Parse a properties sub-packet.Methods inherited from class org.jivesoftware.smack.provider.AbstractProvider
getElementClass, toUrl, wrapExceptions
-
Constructor Details
-
JivePropertiesExtensionProvider
public JivePropertiesExtensionProvider()
-
-
Method Details
-
parse
public JivePropertiesExtension parse(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) throws XmlPullParserException, IOException Parse a properties sub-packet. If any errors occur while de-serializing Java object properties, an exception will be printed and not thrown since a thrown exception will shut down the entire connection. ClassCastExceptions will occur when both the sender and receiver of the stanza don't have identical versions of the same class.Note that you have to explicitly enabled Java object deserialization with
JivePropertiesManager.setJavaObjectEnabled(boolean)
- Specified by:
parse
in classProvider<JivePropertiesExtension>
- Parameters:
parser
- the XML parser, positioned at the start of a properties sub-packet.- Returns:
- a map of the properties.
- Throws:
IOException
- if an I/O error occurred.XmlPullParserException
- if an error in the XML parser occurred.
-