* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Events / Novell.Directory.Ldap.Events.Edir / Novell.Directory.Ldap.Events.Edir.EventData / ValueEventData.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.ValueEventData.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.IO;
33 using System.Text;
34
35 using Novell.Directory.Ldap.Asn1;
36
37 namespace Novell.Directory.Ldap.Events.Edir.EventData
38 {
39   /// <summary> 
40   /// This class represents the data for Value Events.
41   /// </summary>
42   public class ValueEventData : BaseEdirEventData
43   {
44     protected string strAttribute;
45     public string Attribute
46     {
47       get
48       {
49         return strAttribute;
50       }
51     }
52
53     protected string strClassId;
54     public string ClassId
55     {
56       get
57       {
58         return strClassId;
59       }
60     }
61
62     protected string strData;
63     public string Data
64     {
65       get
66       {
67         return strData;
68       }
69     }
70
71     protected string strEntry;
72     public string Entry
73     {
74       get
75       {
76         return strEntry;
77       }
78     }
79
80     protected string strPerpetratorDN;
81     public string PerpetratorDN
82     {
83       get 
84       {
85         return strPerpetratorDN;
86       }
87     }
88
89     // syntax
90     protected string strSyntax;
91     public string Syntax
92     {
93       get
94       {
95         return strSyntax;
96       }
97     }
98
99     protected DSETimeStamp timeStampObj;
100     public DSETimeStamp TimeStamp
101     {
102       get
103       {
104         return timeStampObj;
105       }
106     }
107
108     protected int nVerb;
109     public int Verb
110     {
111       get
112       {
113         return nVerb;
114       }
115     }
116
117     public ValueEventData(EdirEventDataType eventDataType, Asn1Object message)
118       : base(eventDataType, message)
119     {
120         int[] length = new int[1];
121
122         strPerpetratorDN =
123             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
124         strEntry =
125             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
126         strAttribute =
127             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
128         strSyntax =
129             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
130
131         strClassId =
132             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
133
134         timeStampObj =
135             new DSETimeStamp((Asn1Sequence) decoder.decode(decodedData, length));
136
137         strData = ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
138
139         nVerb = ((Asn1Integer) decoder.decode(decodedData, length)).intValue();
140
141         DataInitDone();
142     }    
143
144     /// <summary> 
145     /// Returns a string representation of the object.
146     /// </summary>
147     public override string ToString() 
148     {
149       StringBuilder buf = new StringBuilder();
150
151       buf.Append("[ValueEventData");
152       buf.AppendFormat("(Attribute={0})", strAttribute);
153       buf.AppendFormat("(Classid={0})", strClassId);
154       buf.AppendFormat("(Data={0})", strData);
155       buf.AppendFormat("(Entry={0})", strEntry);
156       buf.AppendFormat("(Perpetrator={0})", strPerpetratorDN);
157       buf.AppendFormat("(Syntax={0})", strSyntax);
158       buf.AppendFormat("(TimeStamp={0})", timeStampObj);
159       buf.AppendFormat("(Verb={0})", nVerb);
160       buf.Append("]");
161       
162       return buf.ToString();
163     }
164   }
165 }