| Revision 79,
333 bytes
checked in by jtorres, 9 years ago
(diff) |
|
new atmsdriver package in trunk. fep_rpc_client dynamic data packing added in branches. fep_rpc_client refactored data packing code into static DataPacker? class. Added vds_data folder into config/. Added new project configuration for ATMSDriver.
|
| Line | |
|---|
| 1 | package atmsdriver; |
|---|
| 2 | |
|---|
| 3 | /** |
|---|
| 4 | * |
|---|
| 5 | * @author John A Torres |
|---|
| 6 | */ |
|---|
| 7 | public class ExchangeInfo { |
|---|
| 8 | /** The network ID **/ |
|---|
| 9 | public int networkId; |
|---|
| 10 | |
|---|
| 11 | /** The XML message **/ |
|---|
| 12 | public String xmlMessage; |
|---|
| 13 | |
|---|
| 14 | /** Constructor **/ |
|---|
| 15 | public ExchangeInfo(int networkId, String xmlMessage) |
|---|
| 16 | { |
|---|
| 17 | this.networkId = networkId; |
|---|
| 18 | this.xmlMessage = xmlMessage; |
|---|
| 19 | } |
|---|
| 20 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.