Author: chintana
Date: Tue Sep 1 11:51:11 2009
New Revision: 809983
URL: http://svn.apache.org/viewvc?rev=809983&view=rev
Log:
* Adding member info to ClientConfigRequest, ClientToBS and BSToOPS classes
* Moving $class_map variable since we're now calling this from
trader_client/config.inc
Modified:
incubator/stonehenge/trunk/stocktrader/php/config_service/class_info.php
Modified:
incubator/stonehenge/trunk/stocktrader/php/config_service/class_info.php
URL:
http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/php/config_service/class_info.php?rev=809983&r1=809982&r2=809983&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/php/config_service/class_info.php
(original)
+++ incubator/stonehenge/trunk/stocktrader/php/config_service/class_info.php
Tue Sep 1 11:51:11 2009
@@ -29,7 +29,10 @@
}
class ClientConfigRequest {
-
+ /**
+ * @var string $ClientName Client name
+ */
+ public $ClientName;
}
class GetClientConfigResponse {
@@ -155,6 +158,16 @@
}
class ClientToBS {
+
+ /**
+ * @var string $Bs Business service
+ */
+ public $Bs;
+
+ /**
+ * @var string $Client Client service
+ */
+ public $Client;
}
@@ -172,7 +185,15 @@
}
class BSToOPS {
-
+ /**
+ * @var string $Bs Business service
+ */
+ public $Bs;
+
+ /**
+ * @var string $Ops Order processing service
+ */
+ public $Ops;
}
class SetBSToOPSResponse {
@@ -244,4 +265,34 @@
}
+// define the class map
+$class_map = array(
+ "GetClientConfig" => "GetClientConfig",
+ "ClientConfigRequest" => "ClientConfigRequest",
+ "GetClientConfigResponse" => "GetClientConfigResponse",
+ "ClientConfigResponse" => "ClientConfigResponse",
+ "GetBSConfig" => "GetBSConfig",
+ "BSConfigRequest" => "BSConfigRequest",
+ "GetBSConfigResponse" => "GetBSConfigResponse",
+ "BSConfigResponse" => "BSConfigResponse",
+ "GetOPSConfig" => "GetOPSConfig",
+ "OPSConfigRequest" => "OPSConfigRequest",
+ "GetOPSConfigResponse" => "GetOPSConfigResponse",
+ "OPSConfigResponse" => "OPSConfigResponse",
+ "SetClientToBS" => "SetClientToBS",
+ "ClientToBS" => "ClientToBS",
+ "SetClientToBSResponse" => "SetClientToBSResponse",
+ "SetBSToOPS" => "SetBSToOPS",
+ "BSToOPS" => "BSToOPS",
+ "SetBSToOPSResponse" => "SetBSToOPSResponse",
+ "GetBSLocations" => "GetBSLocations",
+ "GetBSLocationsResponse" => "GetBSLocationsResponse",
+ "ArrayOfServiceLocation" => "ArrayOfServiceLocation",
+ "ServiceLocation" => "ServiceLocation",
+ "GetOPSLocations" => "GetOPSLocations",
+ "GetOPSLocationsResponse" => "GetOPSLocationsResponse",
+ "SetServiceLocation" => "SetServiceLocation",
+ "SetServiceLocationResponse" => "SetServiceLocationResponse");
+
+
?>