|
From: Donahue S. <dc...@us...> - 2004-09-01 04:17:02
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22576 Modified Files: MessageServiceHandler.java Log Message: DeliveryHandler supports Restore from shutdown Index: MessageServiceHandler.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/MessageServiceHandler.java,v retrieving revision 1.190 retrieving revision 1.191 diff -C2 -d -r1.190 -r1.191 *** MessageServiceHandler.java 19 Aug 2004 06:30:45 -0000 1.190 --- MessageServiceHandler.java 1 Sep 2004 04:16:52 -0000 1.191 *************** *** 114,117 **** --- 114,119 ---- import java.util.Stack; import java.util.StringTokenizer; + import java.util.Vector; + import javax.activation.DataSource; import javax.servlet.ServletConfig; *************** *** 148,159 **** [...7341 lines suppressed...] * context. If the specify MessageServiceHandlerConfig is not registered, * null will be returned. ! * ! * @param appContext ! * the application context. * @return The registered MessageServiceHandlerConfig for the specify ! * application context. */ 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(); } |