Revision 4448
Added by ben leinfelder about 16 years ago
src/edu/ucsb/nceas/metacat/DocInfoHandler.java | ||
---|---|---|
49 | 49 |
private Hashtable docinfo = new Hashtable(); |
50 | 50 |
private String currentTag = null; |
51 | 51 |
|
52 |
private Vector acccessControlList = new Vector();
|
|
52 |
private Vector accessControlList = new Vector(); |
|
53 | 53 |
|
54 | 54 |
public DocInfoHandler() |
55 | 55 |
{ |
... | ... | |
81 | 81 |
// TODO Auto-generated catch block |
82 | 82 |
e.printStackTrace(); |
83 | 83 |
} |
84 |
acccessControlList.add(acfsf);
|
|
84 |
accessControlList.add(acfsf);
|
|
85 | 85 |
} |
86 | 86 |
//save the list when we are done |
87 |
if (localName.equals("acccessControl")) {
|
|
88 |
docinfo.put("acccessControl", acccessControlList);
|
|
87 |
if (localName.equals("accessControl")) { |
|
88 |
docinfo.put("accessControl", accessControlList);
|
|
89 | 89 |
} |
90 | 90 |
} |
91 | 91 |
|
Also available in: Unified diff
use correct spelling for "accessControl" elements