Methods Summary |
---|
public TLV | getEntry(int index)Returns pointed authentication object
return Entries[index];
|
public int | getEntryCount()Returns number of the Authentication objects
return size;
|
public void | load()Loads DODF object from the file system
AODF = new Vector();
resetLoader(AODF, null, null);
parseDF(location.path);
readAODF();
|
private void | readAODF()Reads AODF data from the AODF vector.
TLV root = (TLV)AODF.firstElement(); /* SEQUENCE OF */
size = AODF.size();
Entries = new TLV[size];
for (int i = 0; i < size; i++) {
Entries[i] = (TLV)AODF.elementAt(i);
}
|