diff options
author | Alan Young <consult.awy@gmail.com> | 2017-04-06 06:53:56 (GMT) |
---|---|---|
committer | Alan Young <consult.awy@gmail.com> | 2017-04-06 07:58:09 (GMT) |
commit | 329d7f7cf1b425540b0fa625799d21573d14b149 (patch) | |
tree | 3653f864a0ddc6bebb7158e8be946cfdbe2316d3 | |
parent | 0b496cbffef4d75d07b2e9709328c7d6b172afd7 (diff) | |
download | stroke-329d7f7cf1b425540b0fa625799d21573d14b149.zip stroke-329d7f7cf1b425540b0fa625799d21573d14b149.tar.bz2 |
Implement Message Carbons enable request
Swift-Commit: b16a2d1483f59ad93a2171c6c286e12f4ebbf3be
Change-Id: I8d5b5d9975651a2353909dea976f58e4bf12e014
3 files changed, 25 insertions, 4 deletions
diff --git a/src/com/isode/stroke/elements/DiscoInfo.java b/src/com/isode/stroke/elements/DiscoInfo.java index 78e43ff..83a36b4 100644 --- a/src/com/isode/stroke/elements/DiscoInfo.java +++ b/src/com/isode/stroke/elements/DiscoInfo.java @@ -1,71 +1,72 @@ /* * Copyright (c) 2010, Remko Tron�on. * All rights reserved. */ /* - * Copyright (c) 2010-2016, Isode Limited, London, England. + * Copyright (c) 2010-2017, Isode Limited, London, England. * All rights reserved. */ package com.isode.stroke.elements; import com.isode.stroke.base.NotNull; import java.util.ArrayList; import java.util.List; /** * disco#info from XEP-0030. */ public class DiscoInfo extends Payload { private String node_ = ""; private final List<Identity> identities_ = new ArrayList<Identity>(); private final List<String> features_ = new ArrayList<String>(); private final List<Form> extensions_ = new ArrayList<Form>(); public static final String ChatStatesFeature = "http://jabber.org/protocol/chatstates"; public static final String SecurityLabelsFeature = "urn:xmpp:sec-label:0"; public static final String SecurityLabelsCatalogFeature = "urn:xmpp:sec-label:catalog:2"; public static final String JabberSearchFeature = "jabber:iq:search"; public static final String CommandsFeature = "http://jabber.org/protocol/commands"; public static final String MessageCorrectionFeature = "urn:xmpp:message-correct:0"; public static final String JingleFeature = "urn:xmpp:jingle:1"; public static final String JingleFTFeature = "urn:xmpp:jingle:apps:file-transfer:3"; public static final String JingleTransportsIBBFeature = "urn:xmpp:jingle:transports:ibb:1"; public static final String JingleTransportsS5BFeature = "urn:xmpp:jingle:transports:s5b:1"; public static final String Bytestream = "http://jabber.org/protocol/bytestreams"; public static final String MessageDeliveryReceiptsFeature = "urn:xmpp:receipts"; public static final String WhiteboardFeature = "http://swift.im/whiteboard"; + public static final String MessageCarbonsFeature = "urn:xmpp:carbons:2"; public static class Identity implements Comparable<Identity> { private final String name_; private final String category_; private final String type_; private final String lang_; /** * Identity(name, "client", "pc", ""); */ public Identity(final String name) { this(name, "client"); } /** * Identity(name, category, "pc, ""); */ public Identity(final String name, final String category) { this(name, category, "pc"); } /** * Identity(name, category, type, ""); */ public Identity(final String name, final String category, final String type) { this(name, category, type, ""); } /** * * @param name Identity name, notnull. * @param category Identity category, notnull. * @param type Identity type, notnull. * @param lang Identity language, notnull. */ diff --git a/src/com/isode/stroke/queries/requests/EnableCarbonsRequest.java b/src/com/isode/stroke/queries/requests/EnableCarbonsRequest.java new file mode 100644 index 0000000..cbc8109 --- /dev/null +++ b/src/com/isode/stroke/queries/requests/EnableCarbonsRequest.java @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2016-2017, Isode Limited, London, England. + * All rights reserved. + */ +package com.isode.stroke.queries.requests; + +import com.isode.stroke.elements.CarbonsEnable; +import com.isode.stroke.elements.IQ; +import com.isode.stroke.jid.JID; +import com.isode.stroke.queries.GenericRequest; +import com.isode.stroke.queries.IQRouter; + +public class EnableCarbonsRequest extends GenericRequest<CarbonsEnable> { + + public EnableCarbonsRequest(IQRouter router) { + super(IQ.Type.Set, new JID(), new CarbonsEnable(), router); + } + + public static EnableCarbonsRequest create(IQRouter router) { + return new EnableCarbonsRequest(router); + } +}
\ No newline at end of file diff --git a/src/com/isode/stroke/serializer/payloadserializers/CarbonsEnableSerializer.java b/src/com/isode/stroke/serializer/payloadserializers/CarbonsEnableSerializer.java index f88e461..10c483a 100644 --- a/src/com/isode/stroke/serializer/payloadserializers/CarbonsEnableSerializer.java +++ b/src/com/isode/stroke/serializer/payloadserializers/CarbonsEnableSerializer.java @@ -1,30 +1,28 @@ /* * Copyright (c) 2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ /* * Copyright (c) 2015 Tarun Gupta. * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ package com.isode.stroke.serializer.payloadserializers; +import com.isode.stroke.elements.CarbonsEnable; import com.isode.stroke.serializer.GenericPayloadSerializer; -import com.isode.stroke.serializer.xml.XMLTextNode; import com.isode.stroke.serializer.xml.XMLElement; -import com.isode.stroke.elements.CarbonsEnable; -import com.isode.stroke.base.NotNull; public class CarbonsEnableSerializer extends GenericPayloadSerializer<CarbonsEnable> { public CarbonsEnableSerializer() { super(CarbonsEnable.class); } public String serializePayload(CarbonsEnable payload) { XMLElement element = new XMLElement("enable", "urn:xmpp:carbons:2"); return element.serialize(); } }
\ No newline at end of file |