defaultGraph = $defaultGraph; $this->queryEndpoint = $queryEndpoint; $this->updateEndpoint = $updateEndpoint; $this->dataEndpoint = $dataEndpoint; } /** * @since 3.0 * * @param string $name */ public function setName( $name ) { $this->name = $name; } /** * @since 3.0 * * @return string */ public function getName() { return $this->name; } /** * @since 2.2 * * @return string */ public function getDefaultGraph() { return $this->defaultGraph; } /** * @since 2.2 * * @return string|false */ public function getQueryEndpoint() { return $this->queryEndpoint; } /** * @since 2.2 * * @return string */ public function getUpdateEndpoint() { return $this->updateEndpoint; } /** * @since 2.2 * * @return string */ public function getDataEndpoint() { return $this->dataEndpoint; } }