|
From: Donahue S. <dc...@us...> - 2004-08-19 06:31:00
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv727 Modified Files: MessageServiceHandler.java Log Message: Hermes Customized Delivery is added. The aim of the design is to modify Hermes in order to make it customizable its delivery mechanism. Delivery class is replace by DeliveryMonitor class. DispatchMessage method will not create a new instance of Delivery class. Index: MessageServiceHandler.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/MessageServiceHandler.java,v retrieving revision 1.189 retrieving revision 1.190 diff -C2 -d -r1.189 -r1.190 *** MessageServiceHandler.java 12 Jul 2004 09:24:40 -0000 1.189 --- MessageServiceHandler.java 19 Aug 2004 06:30:45 -0000 1.190 *************** *** 69,72 **** --- 69,73 ---- package hk.hku.cecid.phoenix.message.handler; + import hk.hku.cecid.phoenix.message.handler.MessageServiceHandler; import hk.hku.cecid.phoenix.common.util.AuthenticationManager; import hk.hku.cecid.phoenix.common.util.Property; *************** *** 154,158 **** */ public class MessageServiceHandler extends HttpServlet [...7905 lines suppressed...] return connection.getMessageServiceHandlerConfig(); } } ! } --- 5564,5577 ---- MessageServiceHandlerConfig getMessageServiceHandlerConfig( ApplicationContext appContext) { ! ApplicationContext targetAppContext = getApplicationContext(appContext ! .getCpaId(), appContext.getConversationId(), appContext ! .getService(), appContext.getAction()); if (targetAppContext == null) { return null; } else { ! MessageServiceHandlerConnection connection = (MessageServiceHandlerConnection) mshConnectionTable ! .get(targetAppContext); return connection.getMessageServiceHandlerConfig(); } } ! } \ No newline at end of file |