[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units Body.java,1.11,1.12
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2003-04-19 03:14:24
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory sc8-pr-cvs1:/tmp/cvs-serv21774/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Body.java
Log Message:
Added ability for IDRS security implementation to assume that if a record is retrieved, the password is ok. This will allow for proprietary password encryption models to be used
Index: Body.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Body.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Body.java 26 Mar 2003 23:03:21 -0000 1.11
--- Body.java 19 Apr 2003 03:13:48 -0000 1.12
***************
*** 193,197 ****
else if (srcType.equalsIgnoreCase("db"))
isrcType = YesNo.SRC_DB;
! else if (srcType.equalsIgnoreCase("db"))
isrcType = YesNo.SRC_PROP;
else {
--- 193,197 ----
else if (srcType.equalsIgnoreCase("db"))
isrcType = YesNo.SRC_DB;
! else if (srcType.equalsIgnoreCase("prop"))
isrcType = YesNo.SRC_PROP;
else {
|