Revision 8495
Added by ben leinfelder almost 11 years ago
src/edu/ucsb/nceas/metacat/authentication/AuthFile.java | ||
---|---|---|
75 | 75 |
* |
76 | 76 |
*/ |
77 | 77 |
public class AuthFile implements AuthInterface { |
78 |
private static final String ORGANIZATIONNAME = "UNkown";
|
|
78 |
private static final String ORGANIZATIONNAME = "Unknown";
|
|
79 | 79 |
private static final String ORGANIZATION = "organization"; |
80 | 80 |
private static final String NAME = "name"; |
81 | 81 |
private static final String DN = "dn"; |
... | ... | |
873 | 873 |
* @throws Exception if there is an illegal argument. |
874 | 874 |
*/ |
875 | 875 |
private static HashMap<String, String> parseArgus(int startIndex, String[]argus, Vector<String>pairedOptions, Vector<String>singleOptions) throws Exception { |
876 |
HashMap<String, String> map = new <String, String>HashMap();
|
|
876 |
HashMap<String, String> map = new HashMap<String, String>();
|
|
877 | 877 |
if(argus != null) { |
878 | 878 |
for(int i=startIndex; i<argus.length; i++) { |
879 | 879 |
String arg = argus[i]; |
Also available in: Unified diff
fix typos/compilation