public function Password()
 {
     $config = new Configuration();
     if ($config->getUserPassword() == null) {
         Logger::logging('Fatal error: Api password is empty');
         throw new Exception\Misconfiguration('Api password is empty');
     }
     $this->passWord = $config->getUserPassword();
     return $this->passWord;
 }