| CODENOTIFIER | HelpYou are not signed inSign in |
Project: PEtALS
Revision: 8837
Author: mcarpentier
Date: 06 Aug 2008 12:37:12
Changes:Added channel client support
Files:| ... | ...@@ -25,7 +25,7 @@ | |
| 25 | 25 | /** |
| 26 | 26 | * PEtALS Monitoring Service. |
| 27 | 27 | * |
| 28 | * @author alouis - EBM websourcing | |
| 28 | * @author alouis,mcarpentier - EBM websourcing | |
| 29 | 29 | */ |
| 30 | 30 | public interface IPetalsMonitoringService { |
| 31 | 31 | |
| ... | ...@@ -63,5 +63,22 @@ | |
| 63 | 63 | public static final String DONE = "done"; |
| 64 | 64 | public static final String ERROR = "error"; |
| 65 | 65 | } |
| 66 | ||
| 67 | public static class MessageType { | |
| 68 | public static final String IN = "In"; | |
| 69 | public static final String OUT = "Out"; | |
| 70 | public static final String DONE = "Done"; | |
| 71 | public static final String FAULT = "Fault"; | |
| 72 | public static final String ERROR = "Error"; | |
| 73 | } | |
| 74 | ||
| 75 | public static class ChannelClientReportKeyNames { | |
| 76 | public static final String MESSAGE_TYPE="messageType"; | |
| 77 | public static final String CONTENT="content"; | |
| 78 | public static final String ID="id"; | |
| 79 | public static final String SERVICE="service"; | |
| 80 | public static final String INTERFACE="interface"; | |
| 81 | public static final String ENDPOINT="endpoint"; | |
| 82 | } | |
| 66 | 83 | |
| 67 | 84 | } |
| 68 | 85 | \ No newline at end of file |