[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/script/embedable IDRSShell.java,1.4,1.5
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:10
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/script/embedable
Modified Files:
IDRSShell.java
Log Message:
Synced development
Index: IDRSShell.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSShell.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** IDRSShell.java 27 Feb 2002 23:56:32 -0000 1.4
--- IDRSShell.java 22 Aug 2002 20:06:37 -0000 1.5
***************
*** 148,151 ****
return idrs.getMultiPartRequest();
}
!
}
--- 148,184 ----
return idrs.getMultiPartRequest();
}
!
! /**
! *Tells the type of digest
! *@param plain Plain Text String
! */
! public String getDigest(String plain) throws Exception {
! return idrs.getDigest(plain);
! }
!
! /*
! /**
! *Creates an error in the request
! *@param err as string
! /
!
! public void createError(String err) {
! idrs.createError(err);
! }
!
! /**
! *Determines if there is an error
! *@return true if there is an error
! /
! public boolean isError() {
! return idrs.isError();
! }
!
! /**
! *Retrieves the error
! /
! public String getError() {
! return idrs.getError();
! }
! */
}
|