Prefix the passed id with the configured namespace value
string $id The id to namespace:
string $id The namespaced id
private function getNamespacedId($id) {
$namespaceVersion = $this
->getNamespaceVersion();
return sprintf('%s[%s][%s]', $this->namespace, $id, $namespaceVersion);
}