comparison servlet/src/digilib/servlet/DigilibConfiguration.java @ 92:757068ff7a26

New version 1.8b4. Uses new Collection classes.
author robcast
date Mon, 17 Mar 2003 16:00:25 +0100
parents 997ba69afb81
children 55bc0e928ac5
comparison
equal deleted inserted replaced
91:a398fc09ba71 92:757068ff7a26
19 */ 19 */
20 20
21 package digilib.servlet; 21 package digilib.servlet;
22 22
23 import java.io.File; 23 import java.io.File;
24 import java.util.Hashtable; 24 import java.util.HashMap;
25 import java.util.StringTokenizer; 25 import java.util.StringTokenizer;
26 26
27 import javax.servlet.ServletConfig; 27 import javax.servlet.ServletConfig;
28 import javax.servlet.ServletException; 28 import javax.servlet.ServletException;
29 29
81 private int debugLevel = 5; 81 private int debugLevel = 5;
82 private String debugLevelParam = "debug-level"; 82 private String debugLevelParam = "debug-level";
83 // Utils instance 83 // Utils instance
84 private Utils util = new Utils(debugLevel); 84 private Utils util = new Utils(debugLevel);
85 // HashTable for parameters 85 // HashTable for parameters
86 private Hashtable confTable = null; 86 private HashMap confTable = null;
87 // Type of DocuImage instance 87 // Type of DocuImage instance
88 private String docuImageType = "digilib.image.JAIDocuImage"; 88 private String docuImageType = "digilib.image.JAIDocuImage";
89 private String docuImageTypeParam = "docuimage-class"; 89 private String docuImageTypeParam = "docuimage-class";
90 // part of URL used to indicate authorized access 90 // part of URL used to indicate authorized access
91 private String authURLPath = "authenticated/"; 91 private String authURLPath = "authenticated/";