|
From: <pe...@us...> - 2003-09-24 23:56:57
|
Update of /cvsroot/neuclear/neuclear-id/src/webapp
In directory sc8-pr-cvs1:/tmp/cvs-serv524/src/webapp
Modified Files:
index.jsp
Log Message:
Refactoring nearly done. New model for creating signed objects.
With view for supporting the xmlpull api shortly for performance reasons.
Currently still uses dom4j but that has been refactored out that it
should now be very quick to implement a xmlpull implementation.
A side benefit of this is that the API has been further simplified. I still have some work
todo with regards to cleaning up some of the outlying parts of the code.
Index: index.jsp
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/webapp/index.jsp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** index.jsp 23 Sep 2003 19:16:30 -0000 1.3
--- index.jsp 24 Sep 2003 23:56:49 -0000 1.4
***************
*** 2,6 ****
com.opensymphony.util.TextUtils,
org.neuclear.receiver.ReceiverServlet,
! org.neuclear.id.NamedObject,
org.neuclear.contracts.nsauth.AuthenticationTicket,
org.neuclear.id.NSTools,
--- 2,6 ----
com.opensymphony.util.TextUtils,
org.neuclear.receiver.ReceiverServlet,
! org.neuclear.id.SignedNamedObject,
org.neuclear.contracts.nsauth.AuthenticationTicket,
org.neuclear.id.NSTools,
***************
*** 22,26 ****
String ticketname=(String)sess.getAttribute("nsauth");
if (ticket==null&&!Utility.isEmpty(ticketname)) {
! NamedObject named=NamedObjectFactory.fetchNamedObject(ticketname);
if (named!=null){
if (named instanceof AuthenticationTicket) {
--- 22,26 ----
String ticketname=(String)sess.getAttribute("nsauth");
if (ticket==null&&!Utility.isEmpty(ticketname)) {
! SignedNamedObject named=NamedObjectFactory.fetchNamedObject(ticketname);
if (named!=null){
if (named instanceof AuthenticationTicket) {
|