* of the LDIF record.
* @return an array of <CODE>LDAPAttribute</CODE> objects that
* represent the attributes specified in the content of the LDIF record.
*/
public LDAPAttribute[] getAttributes() {
LDAPAttribute attrs[] = new LDAPAttribute[m_attrs.size()];
for (int i = 0; i < m_attrs.size(); i++) {
attrs[i] = (LDAPAttribute)m_attrs.elementAt(i);
}
return attrs;
}