**** Merged from MCS ****
[mono-project.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Rfc2251 / RfcModifyRequest.cs
blob85667f0e076e0115eefc1836552dd6a14aba4b50
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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 *******************************************************************************/
24 // Novell.Directory.Ldap.Rfc2251.RfcModifyRequest.cs
26 // Author:
27 // Sunil Kumar (Sunilk@novell.com)
29 // (C) 2003 Novell, Inc (http://www.novell.com)
32 using System;
33 using Novell.Directory.Ldap.Asn1;
34 using Novell.Directory.Ldap;
36 namespace Novell.Directory.Ldap.Rfc2251
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
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
61 get
63 return (Asn1SequenceOf) get_Renamed(1);
68 //*************************************************************************
69 // Constructor for ModifyRequest
70 //*************************************************************************
72 /// <summary> </summary>
73 public RfcModifyRequest(RfcLdapDN object_Renamed, Asn1SequenceOf modification):base(2)
75 add(object_Renamed);
76 add(modification);
77 return ;
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)
86 // Replace the base if specified, otherwise keep original base
87 if ((System.Object) base_Renamed != null)
89 set_Renamed(0, new RfcLdapDN(base_Renamed));
91 return ;
93 //*************************************************************************
94 // Accessors
95 //*************************************************************************
97 /// <summary> Override getIdentifier to return an application-wide id.</summary>
98 public override Asn1Identifier getIdentifier()
100 return new Asn1Identifier(Asn1Identifier.APPLICATION, true, LdapMessage.MODIFY_REQUEST);
103 public RfcRequest dupRequest(System.String base_Renamed, System.String filter, bool request)
105 return new RfcModifyRequest(toArray(), base_Renamed);
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()
115 return ((RfcLdapDN) get_Renamed(0)).stringValue();