[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/script IDRSScript.java,1.6,1.7
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:09
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/script
Modified Files:
IDRSScript.java
Log Message:
Synced development
Index: IDRSScript.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/IDRSScript.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** IDRSScript.java 14 Apr 2002 14:10:37 -0000 1.6
--- IDRSScript.java 22 Aug 2002 20:06:37 -0000 1.7
***************
*** 113,115 ****
--- 113,140 ----
public MultiPartRequest getMultiPartRequest() throws Exception;
+ /**
+ *Tells the type of digest
+ *@param plain Plain Text String
+ */
+ public String getDigest(String plain) throws Exception ;
+
+ /*
+ /**
+ *Creates an error in the request
+ *@param err as string
+ /
+
+ public void createError(String err);
+
+ /**
+ *Determines if there is an error
+ *@return true if there is an error
+ /
+ public boolean isError() ;
+
+ /**
+ *Retrieves the error
+ /
+ public String getError() ;
+ */
}
|