id; } /** * @return User */ public function getUser() { return $this->user; } /** * @param User $user * * @return FtpCredential */ public function setUser(User $user) { $this->user = $user; return $this; } /** * @return boolean */ public function isActive() { return $this->active; } /** * @param boolean $active * * @return FtpCredential */ public function setActive($active) { $this->active = (Boolean) $active; return $this; } /** * @return string */ public function getAddress() { return $this->address; } /** * @param string $address * * @return FtpCredential */ public function setAddress($address) { $this->address = $address; return $this; } /** * @return string */ public function getLogin() { return $this->login; } /** * @param string $login * * @return FtpCredential */ public function setLogin($login) { $this->login = $login; return $this; } /** * @return string */ public function getPassword() { return $this->password; } /** * @param string $password * * @return FtpCredential */ public function setPassword($password) { $this->password = $password; return $this; } /** * @return string */ public function getReceptionFolder() { return $this->receptionFolder; } /** * @param string $receptionFolder * * @return FtpCredential */ public function setReceptionFolder($receptionFolder) { $this->receptionFolder = $receptionFolder; return $this; } /** * @return string */ public function getRepositoryPrefixName() { return $this->repositoryPrefixName; } /** * @param string $repositoryPrefixName * * @return FtpCredential */ public function setRepositoryPrefixName($repositoryPrefixName) { $this->repositoryPrefixName = $repositoryPrefixName; return $this; } /** * @return boolean */ public function isPassive() { return $this->passive; } /** * @param string $passive * * @return FtpCredential */ public function setPassive($passive) { $this->passive = (Boolean) $passive; return $this; } /** * @return boolean */ public function isSsl() { return $this->ssl; } /** * @param string $ssl * * @return FtpCredential */ public function setSsl($ssl) { $this->ssl = (Boolean) $ssl; return $this; } /** * @return integer */ public function getMaxRetry() { return $this->maxRetry; } /** * @param string $maxRetry * * @return FtpCredential */ public function setMaxRetry($maxRetry) { $this->maxRetry = $maxRetry; return $this; } /** * @return \Datetime */ public function getUpdated() { return $this->updated; } /** * @param \DateTime $updated * * @return FtpCredential */ public function setUpdated(\DateTime $updated) { $this->updated = $updated; return $this; } }