Parses the application-specific information for any attribute in a business object, given the attribute's name or its position in the business object's attribute list, into name-value pairs.
public final Hashtable getAttrASIHashtable(int attrName,
String delimiter);
public final Hashtable getAttrASIHashtable(int position,
String delimiter);
A java.util.Hashtable object that contains the name-value pairs in the attribute's application-specific information.
The getAttrASIHashtable() method parses the application-specific information for any attribute and returns a hash table of the name-value pairs. For example, these name/value pairs could appear as:
ASI=CN=colname:FK=attr1:UID=attr2:...
This example assumes that a colon (:) is specified as the delimiter.