source = $source; $this->entries = $entries; } /** * Get all classification metadata entries * * @return ClassificationEntryMetadataValue[] */ public function getEntries() { return $this->entries; } /** * Get source classification path * * @return array */ public function getPath() { return $this->source->getPath(); } /** * Get language classification source * * @return string */ public function getLanguage() { return $this->source->getLanguage(); } /** * Get resource identifier associated to classification source * * @return string */ public function getResourceIdentifier() { return $this->source->getResourceIdentifier(); } /** * Get the value of the classification source * * @return string */ public function getValue() { return $this->source->getValue(); } }