Lines Matching +refs:val +refs:content
120 * Parses ldif content. The list of attributes is
165 LDIFContent content = parse_ldif_content(d);
166 rec = new LDIFRecord(dn, content);
171 * Parses ldif content. The list of attributes is
210 Object val = null;
233 val = "";
240 val = getDecodedBytes(substr);
246 val = getFileContent(filename);
254 val = line.substring(idx).trim();
262 if ( val instanceof String ) {
263 newAttr.addValue( (String)val );
265 newAttr.addValue( (byte[])val );
324 * Parses add content
342 * Parses delete content
450 String val = null;
520 byte[] val = null;
559 val = getDecodedBytes(line);
565 val = getFileContent(filename);
573 val = line.substring(idx).trim().getBytes("UTF8");
580 return new LDAPControl( OID, criticality, val );