Added support for SSL, Ldap Events, Edir Events
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Events / Novell.Directory.Ldap.Events.Edir / Novell.Directory.Ldap.Events.Edir.EventData / EntryEventData.cs
1 /******************************************************************************
2 * The MIT License
3 * Copyright (c) 2003 Novell Inc.  www.novell.com
4
5 * Permission is hereby granted, free of charge, to any person obtaining  a copy
6 * of this software and associated documentation files (the Software), to deal
7 * in the Software without restriction, including  without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
9 * copies of the Software, and to  permit persons to whom the Software is 
10 * furnished to do so, subject to the following conditions:
11
12 * The above copyright notice and this permission notice shall be included in 
13 * all copies or substantial portions of the Software.
14
15 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *******************************************************************************/
23 //
24 // Novell.Directory.Ldap.Events.Edir.EventData.EntryEventData.cs
25 //
26 // Author:
27 //   Anil Bhatia (banil@novell.com)
28 //
29 // (C) 2003 Novell, Inc (http://www.novell.com)
30 //
31
32 using System.Text;
33
34 using Novell.Directory.Ldap.Asn1;
35
36 namespace Novell.Directory.Ldap.Events.Edir.EventData
37 {
38   /// <summary> 
39   /// The class represents the data for Entry Events.
40   /// </summary>
41   public class EntryEventData : BaseEdirEventData
42   { 
43     protected string strPerpetratorDN;
44     public string PerpetratorDN
45     {
46       get 
47       {
48         return strPerpetratorDN;
49       }
50     }
51
52     protected string strEntry;
53     public string Entry
54     {
55       get
56       {
57         return strEntry;
58       }
59     }
60
61     protected string strNewDN;
62     public string NewDN
63     {
64       get
65       {
66         return strNewDN;
67       }
68     }
69
70     protected string strClassId;
71     public string ClassId
72     {
73       get
74       {
75         return strClassId;
76       }
77     }
78     
79     protected int nVerb;
80     public int Verb
81     {
82       get
83       {
84         return nVerb;
85       }
86     }
87
88     protected int nFlags;
89     public int Flags
90     {
91       get
92       {
93         return nFlags;
94       }
95     }
96
97     protected DSETimeStamp timeStampObj;
98     public DSETimeStamp TimeStamp
99     {
100       get
101       {
102         return timeStampObj;
103       }
104     }
105
106     public EntryEventData(EdirEventDataType eventDataType, Asn1Object message)
107       : base(eventDataType, message)
108     {
109       int[] length = new int[1];
110       strPerpetratorDN =
111             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
112       strEntry =
113             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
114       strClassId =
115             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
116
117       timeStampObj =
118             new DSETimeStamp((Asn1Sequence) decoder.decode(decodedData, length));
119       nVerb = ((Asn1Integer) decoder.decode(decodedData, length)).intValue();
120       nFlags = ((Asn1Integer) decoder.decode(decodedData, length)).intValue();
121       strNewDN =
122             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
123
124       DataInitDone();
125     }
126
127     /// <summary> 
128     /// Returns a string representation of the object.
129     /// </summary>
130     public override string ToString()
131     {
132       StringBuilder buf = new StringBuilder();
133       buf.Append("EntryEventData[");
134       buf.AppendFormat("(Entry={0})", strEntry);
135       buf.AppendFormat("(Prepetrator={0})", strPerpetratorDN);
136       buf.AppendFormat("(ClassId={0})", strClassId);
137       buf.AppendFormat("(Verb={0})", nVerb);
138       buf.AppendFormat("(Flags={0})", nFlags);
139       buf.AppendFormat("(NewDN={0})", strNewDN);
140       buf.AppendFormat("(TimeStamp={0})", timeStampObj);
141       buf.Append("]");
142
143       return buf.ToString();
144     }
145   }
146 }