comparison servlet/src/digilib/servlet/Scaler.java @ 837:e718f3441d39 stream

small cleanup
author robcast
date Tue, 01 Mar 2011 17:46:29 +0100
parents abd5513ef7b2
children dd13310dbe29
comparison
equal deleted inserted replaced
836:abd5513ef7b2 837:e718f3441d39
47 47
48 /** logger for authentication related */ 48 /** logger for authentication related */
49 protected static Logger authlog = Logger.getLogger("digilib.auth"); 49 protected static Logger authlog = Logger.getLogger("digilib.auth");
50 50
51 /** DocuDirCache instance */ 51 /** DocuDirCache instance */
52 DocuDirCache dirCache; 52 protected DocuDirCache dirCache;
53 53
54 /** Image executor */ 54 /** Image executor */
55 DigilibJobCenter<DocuImage> imageJobCenter; 55 protected DigilibJobCenter<DocuImage> imageJobCenter;
56 56
57 /** authentication error image file */ 57 /** authentication error image file */
58 static File denyImgFile; 58 public static File denyImgFile;
59 59
60 /** image error image file */ 60 /** image error image file */
61 static File errorImgFile; 61 public static File errorImgFile;
62 62
63 /** not found error image file */ 63 /** not found error image file */
64 static File notfoundImgFile; 64 public static File notfoundImgFile;
65 65
66 /** send files as is? */ 66 /** send files as is? */
67 boolean sendFileAllowed = true; 67 protected boolean sendFileAllowed = true;
68 68
69 /** DigilibConfiguration instance */ 69 /** DigilibConfiguration instance */
70 DigilibConfiguration dlConfig; 70 protected DigilibConfiguration dlConfig;
71 71
72 /** use authorization database */ 72 /** use authorization database */
73 boolean useAuthorization = true; 73 protected boolean useAuthorization = true;
74 74
75 /** AuthOps instance */ 75 /** AuthOps instance */
76 AuthOps authOp; 76 protected AuthOps authOp;
77 77
78 /** 78 /**
79 * Initialisation on first run. 79 * Initialisation on first run.
80 * 80 *
81 * @throws ServletException 81 * @throws ServletException