Searched defs:stream (Results 101 - 125 of 339) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DSearchResultDoneProtocolOp.java199 * Writes this protocol op to an ASN.1 output stream.
201 * @param stream The ASN.1 output stream to write to.
202 * @throws IOException If a problem occurs while writing to the stream.
204 public void write(ASN1Writer stream) throws IOException argument
206 stream.writeStartSequence(OP_TYPE_SEARCH_RESULT_DONE);
207 stream.writeEnumerated(resultCode);
211 stream.writeOctetString((String)null);
215 stream.writeOctetString(matchedDN.toString());
220 stream
[all...]
H A DSearchResultEntryProtocolOp.java299 * Writes this protocol op to an ASN.1 output stream.
301 * @param stream The ASN.1 output stream to write to.
302 * @throws IOException If a problem occurs while writing to the stream.
305 public void write(ASN1Writer stream) throws IOException argument
307 stream.writeStartSequence(OP_TYPE_SEARCH_RESULT_ENTRY);
308 stream.writeOctetString(dn.toString());
310 stream.writeStartSequence();
319 writeAttribute(stream, a);
328 writeAttribute(stream,
634 writeAttribute(ASN1Writer stream, Attribute a) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DByteSequence.java224 * @param stream
231 OutputStream copyTo(OutputStream stream) throws IOException; argument
H A DRawAttribute.java201 * Writes this attribute to an ASN.1 output stream.
203 * @param stream The ASN.1 output stream to write to.
205 * stream.
207 public void write(ASN1Writer stream) throws IOException argument
209 stream.writeStartSequence();
210 stream.writeOctetString(getAttributeType());
212 stream.writeStartSet();
218 stream.writeOctetString(value);
222 stream
[all...]
H A DRawModification.java220 * Writes this modification to an ASN.1 stream.
222 * @param stream The ASN.1 output stream to write to.
224 * stream.
226 public void write(ASN1Writer stream) throws IOException argument
228 stream.writeStartSequence();
229 stream.writeEnumerated(getModificationType().intValue());
230 getAttribute().write(stream);
231 stream.writeEndSequence();
/forgerock/opendj-b2.6/src/server/org/opends/server/util/table/
H A DCSVTablePrinter.java200 * Creates a new CSV table printer for the specified output stream.
203 * @param stream
204 * The stream to output tables to.
206 public CSVTablePrinter(OutputStream stream) { argument
207 this(new BufferedWriter(new OutputStreamWriter(stream)));
H A DTabSeparatedTablePrinter.java168 * output stream. Headings will not be displayed by default.
170 * @param stream
171 * The stream to output tables to.
173 public TabSeparatedTablePrinter(OutputStream stream) { argument
174 this(new BufferedWriter(new OutputStreamWriter(stream)));
/forgerock/opendj2/src/server/org/opends/server/protocols/ldap/
H A DAddResponseProtocolOp.java197 * Writes this protocol op to an ASN.1 output stream.
199 * @param stream The ASN.1 output stream to write to.
200 * @throws IOException If a problem occurs while writing to the stream.
202 public void write(ASN1Writer stream) throws IOException argument
204 stream.writeStartSequence(OP_TYPE_ADD_RESPONSE);
205 stream.writeEnumerated(resultCode);
209 stream.writeOctetString((String)null);
213 stream.writeOctetString(matchedDN.toString());
218 stream
[all...]
H A DBindRequestProtocolOp.java217 * Writes this protocol op to an ASN.1 output stream.
219 * @param stream The ASN.1 output stream to write to.
220 * @throws IOException If a problem occurs while writing to the stream.
222 public void write(ASN1Writer stream) throws IOException argument
224 stream.writeStartSequence(OP_TYPE_BIND_REQUEST);
225 stream.writeInteger(protocolVersion);
226 stream.writeOctetString(dn);
230 stream.writeOctetString(TYPE_AUTHENTICATION_SIMPLE, simplePassword);
234 stream
[all...]
H A DBindResponseProtocolOp.java241 * Writes this protocol op to an ASN.1 output stream.
243 * @param stream The ASN.1 output stream to write to.
244 * @throws IOException If a problem occurs while writing to the stream.
246 public void write(ASN1Writer stream) throws IOException argument
248 stream.writeStartSequence(OP_TYPE_BIND_RESPONSE);
249 stream.writeEnumerated(resultCode);
253 stream.writeOctetString((String)null);
257 stream.writeOctetString(matchedDN.toString());
262 stream
[all...]
H A DCompareResponseProtocolOp.java198 * Writes this protocol op to an ASN.1 output stream.
200 * @param stream The ASN.1 output stream to write to.
201 * @throws IOException If a problem occurs while writing to the stream.
203 public void write(ASN1Writer stream) throws IOException argument
205 stream.writeStartSequence(OP_TYPE_COMPARE_RESPONSE);
206 stream.writeEnumerated(resultCode);
210 stream.writeOctetString((String)null);
214 stream.writeOctetString(matchedDN.toString());
219 stream
[all...]
H A DDeleteResponseProtocolOp.java201 * Writes this protocol op to an ASN.1 output stream.
203 * @param stream The ASN.1 output stream to write to.
204 * @throws IOException If a problem occurs while writing to the stream.
206 public void write(ASN1Writer stream) throws IOException argument
208 stream.writeStartSequence(OP_TYPE_DELETE_RESPONSE);
209 stream.writeEnumerated(resultCode);
213 stream.writeOctetString((String)null);
217 stream.writeOctetString(matchedDN.toString());
222 stream
[all...]
H A DExtendedResponseProtocolOp.java261 * Writes this protocol op to an ASN.1 output stream.
263 * @param stream The ASN.1 output stream to write to.
264 * @throws IOException If a problem occurs while writing to the stream.
266 public void write(ASN1Writer stream) throws IOException argument
268 stream.writeStartSequence(OP_TYPE_EXTENDED_RESPONSE);
269 stream.writeEnumerated(resultCode);
273 stream.writeOctetString((String)null);
277 stream.writeOctetString(matchedDN.toString());
282 stream
[all...]
H A DModifyDNRequestProtocolOp.java178 * Writes this protocol op to an ASN.1 output stream.
180 * @param stream The ASN.1 output stream to write to.
181 * @throws IOException If a problem occurs while writing to the stream.
183 public void write(ASN1Writer stream) throws IOException argument
185 stream.writeStartSequence(OP_TYPE_MODIFY_DN_REQUEST);
186 stream.writeOctetString(entryDN);
187 stream.writeOctetString(newRDN);
188 stream.writeBoolean(deleteOldRDN);
192 stream
[all...]
H A DModifyDNResponseProtocolOp.java197 * Writes this protocol op to an ASN.1 output stream.
199 * @param stream The ASN.1 output stream to write to.
200 * @throws IOException If a problem occurs while writing to the stream.
202 public void write(ASN1Writer stream) throws IOException argument
204 stream.writeStartSequence(OP_TYPE_MODIFY_DN_RESPONSE);
205 stream.writeEnumerated(resultCode);
209 stream.writeOctetString((String)null);
213 stream.writeOctetString(matchedDN.toString());
218 stream
[all...]
H A DModifyResponseProtocolOp.java195 * Writes this protocol op to an ASN.1 output stream.
197 * @param stream The ASN.1 output stream to write to.
198 * @throws IOException If a problem occurs while writing to the stream.
200 public void write(ASN1Writer stream) throws IOException argument
202 stream.writeStartSequence(OP_TYPE_MODIFY_RESPONSE);
203 stream.writeEnumerated(resultCode);
207 stream.writeOctetString((String)null);
211 stream.writeOctetString(matchedDN.toString());
216 stream
[all...]
H A DSearchResultDoneProtocolOp.java198 * Writes this protocol op to an ASN.1 output stream.
200 * @param stream The ASN.1 output stream to write to.
201 * @throws IOException If a problem occurs while writing to the stream.
203 public void write(ASN1Writer stream) throws IOException argument
205 stream.writeStartSequence(OP_TYPE_SEARCH_RESULT_DONE);
206 stream.writeEnumerated(resultCode);
210 stream.writeOctetString((String)null);
214 stream.writeOctetString(matchedDN.toString());
219 stream
[all...]
H A DSearchResultEntryProtocolOp.java298 * Writes this protocol op to an ASN.1 output stream.
300 * @param stream The ASN.1 output stream to write to.
301 * @throws IOException If a problem occurs while writing to the stream.
304 public void write(ASN1Writer stream) throws IOException argument
306 stream.writeStartSequence(OP_TYPE_SEARCH_RESULT_ENTRY);
307 stream.writeOctetString(dn.toString());
309 stream.writeStartSequence();
318 writeAttribute(stream, a);
327 writeAttribute(stream,
633 writeAttribute(ASN1Writer stream, Attribute a) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DByteSequence.java223 * @param stream
230 OutputStream copyTo(OutputStream stream) throws IOException; argument
H A DRawAttribute.java199 * Writes this attribute to an ASN.1 output stream.
201 * @param stream The ASN.1 output stream to write to.
203 * stream.
205 public void write(ASN1Writer stream) throws IOException argument
207 stream.writeStartSequence();
208 stream.writeOctetString(getAttributeType());
210 stream.writeStartSet();
216 stream.writeOctetString(value);
220 stream
[all...]
H A DRawModification.java219 * Writes this modification to an ASN.1 stream.
221 * @param stream The ASN.1 output stream to write to.
223 * stream.
225 public void write(ASN1Writer stream) throws IOException argument
227 stream.writeStartSequence();
228 stream.writeEnumerated(getModificationType().intValue());
229 getAttribute().write(stream);
230 stream.writeEndSequence();
/forgerock/opendj2/src/server/org/opends/server/util/table/
H A DCSVTablePrinter.java199 * Creates a new CSV table printer for the specified output stream.
202 * @param stream
203 * The stream to output tables to.
205 public CSVTablePrinter(OutputStream stream) { argument
206 this(new BufferedWriter(new OutputStreamWriter(stream)));
H A DTabSeparatedTablePrinter.java167 * output stream. Headings will not be displayed by default.
169 * @param stream
170 * The stream to output tables to.
172 public TabSeparatedTablePrinter(OutputStream stream) { argument
173 this(new BufferedWriter(new OutputStreamWriter(stream)));
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/ldap/
H A DAddResponseProtocolOp.java198 * Writes this protocol op to an ASN.1 output stream.
200 * @param stream The ASN.1 output stream to write to.
201 * @throws IOException If a problem occurs while writing to the stream.
203 public void write(ASN1Writer stream) throws IOException argument
205 stream.writeStartSequence(OP_TYPE_ADD_RESPONSE);
206 stream.writeEnumerated(resultCode);
210 stream.writeOctetString((String)null);
214 stream.writeOctetString(matchedDN.toString());
219 stream
[all...]
H A DBindRequestProtocolOp.java218 * Writes this protocol op to an ASN.1 output stream.
220 * @param stream The ASN.1 output stream to write to.
221 * @throws IOException If a problem occurs while writing to the stream.
223 public void write(ASN1Writer stream) throws IOException argument
225 stream.writeStartSequence(OP_TYPE_BIND_REQUEST);
226 stream.writeInteger(protocolVersion);
227 stream.writeOctetString(dn);
231 stream.writeOctetString(TYPE_AUTHENTICATION_SIMPLE, simplePassword);
235 stream
[all...]

Completed in 126 milliseconds

1234567891011>>