getMessageProperties() public method

Esempio n. 1
0
 public function getMessageProperties()
 {
     $retval = parent::getMessageProperties();
     $retval->masterPassword = $this->masterPassword;
     $retval->persistence_type = $this->persistenceType;
     return $retval;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
 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;
 }
Esempio n. 4
0
 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;
 }
Esempio n. 5
0
 function addDbMsrInfo(Scalr_Db_Msr_Info $msrInfo)
 {
     $this->dbType = $msrInfo->databaseType;
     $this->{$msrInfo->databaseType} = $msrInfo->getMessageProperties();
 }