id = $id; $this->canonicalName = $canonicalName; $this->localName = $localName; $this->caseHandling = $caseHandling; $this->defaultContentModel = $defaultContentModel; $this->aliases = $aliases; } /** * @return int */ public function getId() { return $this->id; } /** * @return string */ public function getCanonicalName() { return $this->canonicalName; } /** * @return string */ public function getLocalName() { return $this->localName; } /** * @return string */ public function getCaseHandling() { return $this->caseHandling; } /** * @return string */ public function getDefaultContentModel() { return $this->defaultContentModel; } /** * @return array */ public function getAliases() { return $this->aliases; } }