2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Rfc2251 / RfcModifyRequest.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.Rfc2251.RfcModifyRequest.cs
25 //
26 // Author:
27 //   Sunil Kumar (Sunilk@novell.com)
28 //
29 // (C) 2003 Novell, Inc (http://www.novell.com)
30 //
31
32 using System;
33 using Novell.Directory.Ldap.Asn1;
34 using Novell.Directory.Ldap;
35
36 namespace Novell.Directory.Ldap.Rfc2251
37 {
38         
39         /// <summary> Represents an Ldap Modify Request.
40         /// 
41         /// <pre>
42         /// ModifyRequest ::= [APPLICATION 6] SEQUENCE {
43         /// object          LdapDN,
44         /// modification    SEQUENCE OF SEQUENCE {
45         /// operation       ENUMERATED {
46         /// add     (0),
47         /// delete  (1),
48         /// replace (2) },
49         /// modification    AttributeTypeAndValues } }
50         /// </pre>
51         /// </summary>
52         public class RfcModifyRequest:Asn1Sequence, RfcRequest
53         {
54                 /// <summary> Return the Modifications for this request
55                 /// 
56                 /// </summary>
57                 /// <returns> the modifications for this request.
58                 /// </returns>
59                 virtual public Asn1SequenceOf Modifications
60                 {
61                         get
62                         {
63                                 return (Asn1SequenceOf) get_Renamed(1);
64                         }
65                         
66                 }
67                 
68                 //*************************************************************************
69                 // Constructor for ModifyRequest
70                 //*************************************************************************
71                 
72                 /// <summary> </summary>
73                 public RfcModifyRequest(RfcLdapDN object_Renamed, Asn1SequenceOf modification):base(2)
74                 {
75                         add(object_Renamed);
76                         add(modification);
77                         return ;
78                 }
79                 
80                 /// <summary> Constructs a new Modify Request copying from the ArrayList of
81                 /// an existing request.
82                 /// </summary>
83                 /* package */
84                 internal RfcModifyRequest(Asn1Object[] origRequest, System.String base_Renamed):base(origRequest, origRequest.Length)
85                 {
86                         // Replace the base if specified, otherwise keep original base
87                         if ((System.Object) base_Renamed != null)
88                         {
89                                 set_Renamed(0, new RfcLdapDN(base_Renamed));
90                         }
91                         return ;
92                 }
93                 //*************************************************************************
94                 // Accessors
95                 //*************************************************************************
96                 
97                 /// <summary> Override getIdentifier to return an application-wide id.</summary>
98                 public override Asn1Identifier getIdentifier()
99                 {
100                         return new Asn1Identifier(Asn1Identifier.APPLICATION, true, LdapMessage.MODIFY_REQUEST);
101                 }
102                 
103                 public RfcRequest dupRequest(System.String base_Renamed, System.String filter, bool request)
104                 {
105                         return new RfcModifyRequest(toArray(), base_Renamed);
106                 }
107                 
108                 /// <summary> Return the String value of the DN associated with this request
109                 /// 
110                 /// </summary>
111                 /// <returns> the DN for this request.
112                 /// </returns>
113                 public System.String getRequestDN()
114                 {
115                         return ((RfcLdapDN) get_Renamed(0)).stringValue();
116                 }
117         }
118 }