aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/XMPP/XmppPresenceStanza.cs
diff options
context:
space:
mode:
authorDr Scofield2008-06-04 18:09:55 +0000
committerDr Scofield2008-06-04 18:09:55 +0000
commitcaee0288fbf5fdc2abfbaa0890d3de62110de324 (patch)
tree33fb76b77da568838eda6651f3a715ebfb0d1ab7 /OpenSim/Framework/Communications/XMPP/XmppPresenceStanza.cs
parentchange clientCircuits_reverse to a synchronized hash table. This (diff)
downloadopensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.zip
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.gz
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.bz2
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.xz
* adding XmppPresenceStanza and deserialization/reification support
having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/XMPP/XmppPresenceStanza.cs71
1 files changed, 71 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/XMPP/XmppPresenceStanza.cs b/OpenSim/Framework/Communications/XMPP/XmppPresenceStanza.cs
new file mode 100644
index 0000000..d63a0d1
--- /dev/null
+++ b/OpenSim/Framework/Communications/XMPP/XmppPresenceStanza.cs
@@ -0,0 +1,71 @@
1/*
2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the OpenSim Project nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28using System;
29using System.Xml;
30using System.Xml.Serialization;
31
32namespace OpenSim.Framework.Communications.XMPP
33{
34 /// <summary>
35 /// Message types.
36 /// </summary>
37 public enum XmppPresenceType
38 {
39 [XmlEnum("unavailable")] unavailable,
40 [XmlEnum("subscribe")] subscribe,
41 [XmlEnum("subscribed")] subscribed,
42 [XmlEnum("unsubscribe")] unsubscribe,
43 [XmlEnum("unsubscribed")] unsubscribed,
44 [XmlEnum("probe")] probe,
45 [XmlEnum("error")] error,
46 }
47
48
49 [XmlRoot("message")]
50 public class XmppPresenceStanza: XmppStanza
51 {
52 /// <summary>
53 /// IQ type: one of set, get, result, error
54 /// </summary>
55 [XmlAttribute("type")]
56 public XmppPresenceType PresenceType;
57
58 // [XmlAttribute("error")]
59 // public XmppError Error;
60
61 public XmppPresenceStanza() : base()
62 {
63 }
64
65 public XmppPresenceStanza(string fromJid, string toJid, XmppPresenceType pType) :
66 base(fromJid, toJid)
67 {
68 PresenceType = pType;
69 }
70 }
71}