name = $name; $this->ipAddress = $ipAddress; $this->serverId = $serverId; } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getIpAddress() { return $this->ipAddress; } /** * @return string */ public function getServerId() { return $this->serverId; } }