1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-13 15:14:54 +02:00

Add IQTypeFilter.GET_OR_SET

This commit is contained in:
Florian Schmaus 2015-01-05 20:17:03 +01:00
parent d78b39d117
commit 9c2f6dcfbc

View file

@ -32,6 +32,7 @@ public class IQTypeFilter extends FlexiblePacketTypeFilter<IQ> {
public static final PacketFilter SET = new IQTypeFilter(Type.set); public static final PacketFilter SET = new IQTypeFilter(Type.set);
public static final PacketFilter RESULT = new IQTypeFilter(Type.result); public static final PacketFilter RESULT = new IQTypeFilter(Type.result);
public static final PacketFilter ERROR = new IQTypeFilter(Type.error); public static final PacketFilter ERROR = new IQTypeFilter(Type.error);
public static final PacketFilter GET_OR_SET = new OrFilter(GET, SET);
private final IQ.Type type; private final IQ.Type type;