Searched defs:stream (Results 151 - 175 of 339) sorted by relevance

1234567891011>>

/forgerock/opendj2-jel-hg/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/opendj2-jel-hg/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-hg/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-hg/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-hg/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/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/
H A DAddResponseProtocolOp.java169 public void write(ASN1Writer stream) throws IOException argument
171 stream.writeStartSequence(OP_TYPE_ADD_RESPONSE);
172 stream.writeEnumerated(resultCode);
176 stream.writeOctetString((String)null);
180 stream.writeOctetString(matchedDN.toString());
185 stream.writeOctetString((String)null);
189 stream.writeOctetString(errorMessage.toString());
194 stream.writeStartSequence(TYPE_REFERRAL_SEQUENCE);
197 stream.writeOctetString(s);
199 stream
[all...]
H A DBindRequestProtocolOp.java208 * Writes this protocol op to an ASN.1 output stream.
210 * @param stream The ASN.1 output stream to write to.
211 * @throws IOException If a problem occurs while writing to the stream.
213 public void write(ASN1Writer stream) throws IOException argument
215 stream.writeStartSequence(OP_TYPE_BIND_REQUEST);
216 stream.writeInteger(protocolVersion);
217 stream.writeOctetString(dn);
221 stream.writeOctetString(TYPE_AUTHENTICATION_SIMPLE, simplePassword);
225 stream
[all...]
H A DBindResponseProtocolOp.java209 public void write(ASN1Writer stream) throws IOException argument
211 stream.writeStartSequence(OP_TYPE_BIND_RESPONSE);
212 stream.writeEnumerated(resultCode);
216 stream.writeOctetString((String)null);
220 stream.writeOctetString(matchedDN.toString());
225 stream.writeOctetString((String)null);
229 stream.writeOctetString(errorMessage.toString());
234 stream.writeStartSequence(TYPE_REFERRAL_SEQUENCE);
237 stream.writeOctetString(s);
239 stream
[all...]
H A DCompareResponseProtocolOp.java170 public void write(ASN1Writer stream) throws IOException argument
172 stream.writeStartSequence(OP_TYPE_COMPARE_RESPONSE);
173 stream.writeEnumerated(resultCode);
177 stream.writeOctetString((String)null);
181 stream.writeOctetString(matchedDN.toString());
186 stream.writeOctetString((String)null);
190 stream.writeOctetString(errorMessage.toString());
195 stream.writeStartSequence(TYPE_REFERRAL_SEQUENCE);
198 stream.writeOctetString(s);
200 stream
[all...]

Completed in 1217 milliseconds

1234567891011>>