|
From: <kc...@us...> - 2003-07-17 09:42:02
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging
In directory sc8-pr-cvs1:/tmp/cvs-serv547/src/hk/hku/cecid/phoenix/message/packaging
Modified Files:
Tag: b0931
EbxmlMessage.java
Log Message:
added flag to indicate a message is encrypted or not
Index: EbxmlMessage.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/EbxmlMessage.java,v
retrieving revision 1.24.2.5
retrieving revision 1.24.2.6
diff -C2 -d -r1.24.2.5 -r1.24.2.6
*** EbxmlMessage.java 17 Jul 2003 08:08:13 -0000 1.24.2.5
--- EbxmlMessage.java 17 Jul 2003 09:41:59 -0000 1.24.2.6
***************
*** 953,956 ****
--- 953,966 ----
/**
+ * Indicates this message is smime encrypted. This is nothing to do with
+ * further encryption. This is only used by mail.java. When we receive an
+ * encyrpted message, we decrypt it. And then we set this flag to notify
+ * the user that this message has been encrypted.
+ */
+ public void setSMIMEEncrypted() {
+ encryption = true;
+ }
+
+ /**
* Add an ebXML message payload container.
*
|