Searched defs:rawEntryDN (Results 101 - 125 of 136) sorted by relevance

123456

/forgerock/opendj2/src/server/org/opends/server/core/
H A DAddOperationBasis.java73 private ByteString rawEntryDN; field in class:AddOperationBasis
109 * @param rawEntryDN The raw DN of the entry to add from the client
117 ByteString rawEntryDN, List<RawAttribute> rawAttributes)
122 this.rawEntryDN = rawEntryDN;
165 rawEntryDN = ByteString.valueOf(entryDN.toString());
203 return rawEntryDN;
208 public final void setRawEntryDN(ByteString rawEntryDN) argument
210 this.rawEntryDN = rawEntryDN;
115 AddOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawAttribute> rawAttributes) argument
[all...]
H A DCompareOperationBasis.java74 private ByteString rawEntryDN; field in class:CompareOperationBasis
99 * @param rawEntryDN The raw, unprocessed entry DN as provided in the
108 ByteString rawEntryDN, String rawAttributeType,
114 this.rawEntryDN = rawEntryDN;
155 rawEntryDN = ByteString.valueOf(entryDN.toString());
170 return rawEntryDN;
179 public final void setRawEntryDN(ByteString rawEntryDN) argument
181 this.rawEntryDN = rawEntryDN;
105 CompareOperationBasis( ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, String rawAttributeType, ByteString assertionValue) argument
[all...]
H A DModifyDNOperationBasis.java69 private ByteString rawEntryDN; field in class:ModifyDNOperationBasis
113 * @param rawEntryDN The raw, unprocessed entry DN as included in the
125 ByteString rawEntryDN, ByteString rawNewRDN,
131 this.rawEntryDN = rawEntryDN;
176 rawEntryDN = ByteString.valueOf(entryDN.toString());
197 return rawEntryDN;
202 public final void setRawEntryDN(ByteString rawEntryDN) argument
204 this.rawEntryDN = rawEntryDN;
122 ModifyDNOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, ByteString rawNewRDN, boolean deleteOldRDN, ByteString rawNewSuperior) argument
[all...]
H A DModifyOperationBasis.java65 private ByteString rawEntryDN; field in class:ModifyOperationBasis
94 * @param rawEntryDN The raw, unprocessed DN of the entry to modify,
103 ByteString rawEntryDN,
109 this.rawEntryDN = rawEntryDN;
142 rawEntryDN = ByteString.valueOf(entryDN.toString());
159 return rawEntryDN;
164 public final void setRawEntryDN(ByteString rawEntryDN) argument
166 this.rawEntryDN = rawEntryDN;
100 ModifyOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawModification> rawModifications) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestModifyDNOperation.java279 private ModifyDNOperationBasis newModifyDNOperation(DN rawEntryDN, argument
285 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
289 private ModifyDNOperationBasis newModifyDNOperation(ByteString rawEntryDN, argument
295 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestModifyDNOperation.java274 private ModifyDNOperationBasis newModifyDNOperation(DN rawEntryDN, argument
280 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
284 private ModifyDNOperationBasis newModifyDNOperation(ByteString rawEntryDN, argument
290 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DAddOperationBasis.java84 private ByteString rawEntryDN; field in class:AddOperationBasis
120 * @param rawEntryDN The raw DN of the entry to add from the client
128 ByteString rawEntryDN, List<RawAttribute> rawAttributes)
133 this.rawEntryDN = rawEntryDN;
177 rawEntryDN = ByteString.valueOf(entryDN.toString());
218 return rawEntryDN;
224 public final void setRawEntryDN(ByteString rawEntryDN) argument
226 this.rawEntryDN = rawEntryDN;
126 AddOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawAttribute> rawAttributes) argument
[all...]
H A DCompareOperationBasis.java79 private ByteString rawEntryDN; field in class:CompareOperationBasis
104 * @param rawEntryDN The raw, unprocessed entry DN as provided in the
113 ByteString rawEntryDN, String rawAttributeType,
119 this.rawEntryDN = rawEntryDN;
160 rawEntryDN = ByteString.valueOf(entryDN.toString());
174 return rawEntryDN;
182 public final void setRawEntryDN(ByteString rawEntryDN) argument
184 this.rawEntryDN = rawEntryDN;
110 CompareOperationBasis( ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, String rawAttributeType, ByteString assertionValue) argument
[all...]
H A DModifyDNOperationBasis.java72 private ByteString rawEntryDN; field in class:ModifyDNOperationBasis
115 * @param rawEntryDN The raw, unprocessed entry DN as included in the
127 ByteString rawEntryDN, ByteString rawNewRDN,
133 this.rawEntryDN = rawEntryDN;
179 rawEntryDN = ByteString.valueOf(entryDN.toString());
204 return rawEntryDN;
212 public final void setRawEntryDN(ByteString rawEntryDN) argument
214 this.rawEntryDN = rawEntryDN;
124 ModifyDNOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, ByteString rawNewRDN, boolean deleteOldRDN, ByteString rawNewSuperior) argument
[all...]
H A DModifyOperationBasis.java75 private ByteString rawEntryDN; field in class:ModifyOperationBasis
105 * @param rawEntryDN The raw, unprocessed DN of the entry to modify,
114 ByteString rawEntryDN,
120 this.rawEntryDN = rawEntryDN;
153 rawEntryDN = ByteString.valueOf(entryDN.toString());
171 return rawEntryDN;
177 public final void setRawEntryDN(ByteString rawEntryDN) argument
179 this.rawEntryDN = rawEntryDN;
111 ModifyOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawModification> rawModifications) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestModifyDNOperation.java279 private ModifyDNOperationBasis newModifyDNOperation(DN rawEntryDN, argument
285 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
289 private ModifyDNOperationBasis newModifyDNOperation(ByteString rawEntryDN, argument
295 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestModifyDNOperation.java274 private ModifyDNOperationBasis newModifyDNOperation(DN rawEntryDN, argument
280 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
284 private ModifyDNOperationBasis newModifyDNOperation(ByteString rawEntryDN, argument
290 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestModifyDNOperation.java279 private ModifyDNOperationBasis newModifyDNOperation(DN rawEntryDN, argument
285 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
289 private ModifyDNOperationBasis newModifyDNOperation(ByteString rawEntryDN, argument
295 Collections.<Control> emptyList(), rawEntryDN, newRDN, deleteOldRDN,
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DAddOperationBasis.java84 private ByteString rawEntryDN; field in class:AddOperationBasis
120 * @param rawEntryDN The raw DN of the entry to add from the client
128 ByteString rawEntryDN, List<RawAttribute> rawAttributes)
133 this.rawEntryDN = rawEntryDN;
177 rawEntryDN = ByteString.valueOf(entryDN.toString());
218 return rawEntryDN;
224 public final void setRawEntryDN(ByteString rawEntryDN) argument
226 this.rawEntryDN = rawEntryDN;
126 AddOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawAttribute> rawAttributes) argument
[all...]
H A DCompareOperationBasis.java79 private ByteString rawEntryDN; field in class:CompareOperationBasis
104 * @param rawEntryDN The raw, unprocessed entry DN as provided in the
113 ByteString rawEntryDN, String rawAttributeType,
119 this.rawEntryDN = rawEntryDN;
160 rawEntryDN = ByteString.valueOf(entryDN.toString());
174 return rawEntryDN;
182 public final void setRawEntryDN(ByteString rawEntryDN) argument
184 this.rawEntryDN = rawEntryDN;
110 CompareOperationBasis( ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, String rawAttributeType, ByteString assertionValue) argument
[all...]
H A DModifyDNOperationBasis.java72 private ByteString rawEntryDN; field in class:ModifyDNOperationBasis
115 * @param rawEntryDN The raw, unprocessed entry DN as included in the
127 ByteString rawEntryDN, ByteString rawNewRDN,
133 this.rawEntryDN = rawEntryDN;
179 rawEntryDN = ByteString.valueOf(entryDN.toString());
204 return rawEntryDN;
212 public final void setRawEntryDN(ByteString rawEntryDN) argument
214 this.rawEntryDN = rawEntryDN;
124 ModifyDNOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, ByteString rawNewRDN, boolean deleteOldRDN, ByteString rawNewSuperior) argument
[all...]
H A DModifyOperationBasis.java75 private ByteString rawEntryDN; field in class:ModifyOperationBasis
105 * @param rawEntryDN The raw, unprocessed DN of the entry to modify,
114 ByteString rawEntryDN,
120 this.rawEntryDN = rawEntryDN;
153 rawEntryDN = ByteString.valueOf(entryDN.toString());
171 return rawEntryDN;
177 public final void setRawEntryDN(ByteString rawEntryDN) argument
179 this.rawEntryDN = rawEntryDN;
111 ModifyOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawModification> rawModifications) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DAddOperationBasis.java73 private ByteString rawEntryDN; field in class:AddOperationBasis
109 * @param rawEntryDN The raw DN of the entry to add from the client
117 ByteString rawEntryDN, List<RawAttribute> rawAttributes)
122 this.rawEntryDN = rawEntryDN;
165 rawEntryDN = ByteString.valueOf(entryDN.toString());
203 return rawEntryDN;
208 public final void setRawEntryDN(ByteString rawEntryDN) argument
210 this.rawEntryDN = rawEntryDN;
115 AddOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawAttribute> rawAttributes) argument
[all...]
H A DCompareOperationBasis.java74 private ByteString rawEntryDN; field in class:CompareOperationBasis
99 * @param rawEntryDN The raw, unprocessed entry DN as provided in the
108 ByteString rawEntryDN, String rawAttributeType,
114 this.rawEntryDN = rawEntryDN;
155 rawEntryDN = ByteString.valueOf(entryDN.toString());
170 return rawEntryDN;
179 public final void setRawEntryDN(ByteString rawEntryDN) argument
181 this.rawEntryDN = rawEntryDN;
105 CompareOperationBasis( ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, String rawAttributeType, ByteString assertionValue) argument
[all...]
H A DModifyDNOperationBasis.java69 private ByteString rawEntryDN; field in class:ModifyDNOperationBasis
113 * @param rawEntryDN The raw, unprocessed entry DN as included in the
125 ByteString rawEntryDN, ByteString rawNewRDN,
131 this.rawEntryDN = rawEntryDN;
176 rawEntryDN = ByteString.valueOf(entryDN.toString());
197 return rawEntryDN;
202 public final void setRawEntryDN(ByteString rawEntryDN) argument
204 this.rawEntryDN = rawEntryDN;
122 ModifyDNOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, ByteString rawNewRDN, boolean deleteOldRDN, ByteString rawNewSuperior) argument
[all...]
H A DModifyOperationBasis.java65 private ByteString rawEntryDN; field in class:ModifyOperationBasis
94 * @param rawEntryDN The raw, unprocessed DN of the entry to modify,
103 ByteString rawEntryDN,
109 this.rawEntryDN = rawEntryDN;
142 rawEntryDN = ByteString.valueOf(entryDN.toString());
159 return rawEntryDN;
164 public final void setRawEntryDN(ByteString rawEntryDN) argument
166 this.rawEntryDN = rawEntryDN;
100 ModifyOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawModification> rawModifications) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DAddOperationBasis.java67 private ByteString rawEntryDN; field in class:AddOperationBasis
98 * @param rawEntryDN The raw DN of the entry to add from the client
106 ByteString rawEntryDN, List<RawAttribute> rawAttributes)
111 this.rawEntryDN = rawEntryDN;
151 rawEntryDN = ByteString.valueOfUtf8(entryDN.toString());
174 return rawEntryDN;
178 public final void setRawEntryDN(ByteString rawEntryDN) argument
180 this.rawEntryDN = rawEntryDN;
104 AddOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawAttribute> rawAttributes) argument
[all...]
H A DCompareOperationBasis.java71 private ByteString rawEntryDN; field in class:CompareOperationBasis
96 * @param rawEntryDN The raw, unprocessed entry DN as provided in the
105 ByteString rawEntryDN, String rawAttributeType,
111 this.rawEntryDN = rawEntryDN;
152 rawEntryDN = ByteString.valueOfUtf8(entryDN.toString());
163 return rawEntryDN;
168 public final void setRawEntryDN(ByteString rawEntryDN) argument
170 this.rawEntryDN = rawEntryDN;
102 CompareOperationBasis( ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, String rawAttributeType, ByteString assertionValue) argument
[all...]
H A DModifyDNOperationBasis.java65 private ByteString rawEntryDN; field in class:ModifyDNOperationBasis
109 * @param rawEntryDN The raw, unprocessed entry DN as included in the
121 ByteString rawEntryDN, ByteString rawNewRDN,
127 this.rawEntryDN = rawEntryDN;
172 rawEntryDN = ByteString.valueOfUtf8(entryDN.toString());
193 return rawEntryDN;
198 public final void setRawEntryDN(ByteString rawEntryDN) argument
200 this.rawEntryDN = rawEntryDN;
118 ModifyDNOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, ByteString rawNewRDN, boolean deleteOldRDN, ByteString rawNewSuperior) argument
[all...]
H A DModifyOperationBasis.java61 private ByteString rawEntryDN; field in class:ModifyOperationBasis
87 * @param rawEntryDN The raw, unprocessed DN of the entry to modify,
96 ByteString rawEntryDN,
102 this.rawEntryDN = rawEntryDN;
135 rawEntryDN = ByteString.valueOfUtf8(entryDN.toString());
152 return rawEntryDN;
157 public final void setRawEntryDN(ByteString rawEntryDN) argument
159 this.rawEntryDN = rawEntryDN;
93 ModifyOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawEntryDN, List<RawModification> rawModifications) argument
[all...]

Completed in 241 milliseconds

123456