getMessageProperties() public method

コード例 #1
0
ファイル: Info.php プロジェクト: rakesh-mohanta/scalr
 public function getMessageProperties()
 {
     $retval = parent::getMessageProperties();
     $retval->masterPassword = $this->masterPassword;
     $retval->persistence_type = $this->persistenceType;
     return $retval;
 }
コード例 #2
0
ファイル: Info.php プロジェクト: mheydt/scalr
 public function getMessageProperties()
 {
     $retval = parent::getMessageProperties();
     $retval->rootPassword = $this->rootPassword;
     $retval->replPassword = $this->replPassword;
     $retval->statPassword = $this->statPassword;
     $retval->logPos = $this->logPos;
     $retval->logFile = $this->logFile;
     return $retval;
 }
コード例 #3
0
ファイル: Info.php プロジェクト: sacredwebsite/scalr
 public function getMessageProperties()
 {
     $retval = parent::getMessageProperties();
     $retval->rootUser = $this->rootUser;
     $retval->rootPassword = $this->rootPassword;
     $retval->rootSshPrivateKey = $this->rootSshPrivateKey;
     $retval->rootSshPublicKey = $this->rootSshPublicKey;
     $retval->currentXlogLocation = $this->currentXlogLocation;
     return $retval;
 }
コード例 #4
0
ファイル: Info.php プロジェクト: sacredwebsite/scalr
 public function getMessageProperties()
 {
     $retval = parent::getMessageProperties();
     $retval->masterPassword = $this->masterPassword;
     $retval->persistence_type = $this->persistenceType;
     $retval->use_password = $this->usePassword;
     $retval->num_processes = $this->numProcesses;
     $retval->ports = $this->ports;
     $retval->passwords = $this->passwords;
     return $retval;
 }
コード例 #5
0
 function addDbMsrInfo(Scalr_Db_Msr_Info $msrInfo)
 {
     $this->dbType = $msrInfo->databaseType;
     $this->{$msrInfo->databaseType} = $msrInfo->getMessageProperties();
 }