* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ abstract class AbstractTemplateEndpoint extends AbstractEndpoint { /** @var string */ protected $name; /** * @param $name * * @return $this */ public function setName($name) { $this->name = $name; return $this; } }