id; } /** * Set username * * @param string $username * @return AuthFailure */ public function setUsername($username) { $this->username = $username; return $this; } /** * Get username * * @return string */ public function getUsername() { return $this->username; } /** * Set ip * * @param string $ip * @return AuthFailure */ public function setIp($ip) { $this->ip = $ip; return $this; } /** * Get ip * * @return string */ public function getIp() { return $this->ip; } /** * Set locked * * @param boolean $locked * @return AuthFailure */ public function setLocked($locked) { $this->locked = $locked; return $this; } /** * Get locked * * @return boolean */ public function getLocked() { return $this->locked; } /** * Set created * * @param \DateTime $created * @return AuthFailure */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * Get created * * @return \DateTime */ public function getCreated() { return $this->created; } }