logstore = $logstore; $this->token = $token; $this->line = $line; } /** * Get logstroe name * * @return string logstore name */ public function getLogstore() { return $this->logstore; } /** * Set logstore name * * @param string $logstore * logstore name */ public function setLogstore($logstore) { $this->logstore = $logstore; } /** * Get start token to list topics * * @return string start token to list topics */ public function getToken() { return $this->token; } /** * Set start token to list topics * * @param string $token start token to list topics */ public function setToken($token) { $this->token = $token; } /** * Get max topic counts to return * * @return integer max topic counts to return */ public function getLine() { return $this->line; } /** * Set max topic counts to return * * @param integer $line max topic counts to return */ public function setLine($line) { $this->line = $line; } }