Lines Matching +refs:val +refs:content
121 * Parses ldif content. The list of attributes is
166 LDIFContent content = parse_ldif_content(d);
167 rec = new LDIFRecord(dn, content);
172 * Parses ldif content. The list of attributes is
211 Object val = null;
234 val = "";
241 val = getDecodedBytes(substr);
247 val = getFileContent(filename);
255 val = line.substring(idx).trim();
263 if ( val instanceof String ) {
264 newAttr.addValue( (String)val );
266 newAttr.addValue( (byte[])val );
325 * Parses add content
343 * Parses delete content
451 String val = null;
521 byte[] val = null;
560 val = getDecodedBytes(line);
566 val = getFileContent(filename);
574 val = line.substring(idx).trim().getBytes("UTF8");
581 return new LDAPControl( OID, criticality, val );