diff --git a/smack-core/src/main/java/org/jivesoftware/smack/provider/IntrospectionProvider.java b/smack-core/src/main/java/org/jivesoftware/smack/provider/IntrospectionProvider.java index 4119c687c..b5885531e 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/provider/IntrospectionProvider.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/provider/IntrospectionProvider.java @@ -26,10 +26,22 @@ import org.jivesoftware.smack.util.ParserUtils; import org.jivesoftware.smack.xml.XmlPullParser; import org.jivesoftware.smack.xml.XmlPullParserException; +/** + * Parsing with introspection poses a security threat and results in mutable classes and is therefore discouraged. + * @deprecated use a proper parser. + */ +// TODO: Remove in Smack 4.6. +@Deprecated public class IntrospectionProvider{ // Unfortunately, we have to create two introspection providers, with the exactly the same code here + /** + * Parsing with introspection poses a security threat and results in mutable classes and is therefore discouraged. + * @deprecated use a proper parser. + */ + // TODO: Remove in Smack 4.6. + @Deprecated public abstract static class IQIntrospectionProvider extends IQProvider { private final Class elementClass; @@ -51,6 +63,12 @@ public class IntrospectionProvider{ } } + /** + * Parsing with introspection poses a security threat and results in mutable classes and is therefore discouraged. + * @deprecated use a proper parser. + */ + // TODO: Remove in Smack 4.6. + @Deprecated public abstract static class PacketExtensionIntrospectionProvider extends ExtensionElementProvider { private final Class elementClass;