mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-21 22:02:06 +01:00
[core] Mark IntrospectionProvider as deprecated
This commit is contained in:
parent
6af38482de
commit
8cd0a9f5ce
1 changed files with 18 additions and 0 deletions
|
@ -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<I extends IQ> extends IQProvider<I> {
|
||||
private final Class<I> 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<PE extends ExtensionElement> extends ExtensionElementProvider<PE> {
|
||||
private final Class<PE> elementClass;
|
||||
|
||||
|
|
Loading…
Reference in a new issue