CallerParamextMap.php 779 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace StockStateAreaStockStateExport;
  3. class CallerParamextMap{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="java.util.Map";
  7. }
  8. private $CallerParamKey;
  9. public function setCallerParamKey($CallerParamKey){
  10. $this->params['CallerParamKey'] = $CallerParamKey;
  11. }
  12. public function getCallerParamKey(){
  13. return $this->CallerParamKey;
  14. }
  15. private $CallerParamValue;
  16. public function setCallerParamValue($CallerParamValue){
  17. $this->params['CallerParamValue'] = $CallerParamValue;
  18. }
  19. public function getCallerParamValue(){
  20. return $this->CallerParamValue;
  21. }
  22. function getInstance(){
  23. return $this->params;
  24. }
  25. }
  26. ?>