_propDict)) { return $this->_propDict["baseUrls"]; } else { return null; } } /** * Sets the baseUrls * A list of the URL prefixes that must match URLs to be processed by this URL-to-item-resolver. * * @param string $val The value of the baseUrls * * @return UrlMatchInfo */ public function setBaseUrls($val) { $this->_propDict["baseUrls"] = $val; return $this; } /** * Gets the urlPattern * A regular expression that will be matched towards the URL that is processed by this URL-to-item-resolver. The ECMAScript specification for regular expressions (ECMA-262) is used for the evaluation. The named groups defined by the regular expression will be used later to extract values from the URL. * * @return string|null The urlPattern */ public function getUrlPattern() { if (array_key_exists("urlPattern", $this->_propDict)) { return $this->_propDict["urlPattern"]; } else { return null; } } /** * Sets the urlPattern * A regular expression that will be matched towards the URL that is processed by this URL-to-item-resolver. The ECMAScript specification for regular expressions (ECMA-262) is used for the evaluation. The named groups defined by the regular expression will be used later to extract values from the URL. * * @param string $val The value of the urlPattern * * @return UrlMatchInfo */ public function setUrlPattern($val) { $this->_propDict["urlPattern"] = $val; return $this; } }