Sets the response's time-to-live for private/client caches.
This method adjusts the Cache-Control/max-age directive.
@api
integer $seconds Number of seconds:
public function setClientTtl($seconds) {
$this
->setMaxAge($this
->getAge() + $seconds);
return $this;
}