|
From: <pe...@us...> - 2003-11-21 04:45:47
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/store/servlet
In directory sc8-pr-cvs1:/tmp/cvs-serv10855/src/java/org/neuclear/store/servlet
Modified Files:
StorageServlet.java
Log Message:
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
Otherwise You will Finaliate.
Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
This should hopefully make everything more stable (and secure).
Index: StorageServlet.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/store/servlet/StorageServlet.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** StorageServlet.java 19 Nov 2003 23:33:59 -0000 1.5
--- StorageServlet.java 21 Nov 2003 04:45:14 -0000 1.6
***************
*** 16,21 ****
import javax.servlet.ServletException;
! public class StorageServlet extends ReceiverServlet {
! public void init(ServletConfig config) throws ServletException {
System.out.println("NEUDIST: Initialising StorageServlet");
super.init(config);
--- 16,21 ----
import javax.servlet.ServletException;
! public final class StorageServlet extends ReceiverServlet {
! public final void init(final ServletConfig config) throws ServletException {
System.out.println("NEUDIST: Initialising StorageServlet");
super.init(config);
|