Sets the href property. @param href the href property
(final String href)
| 249 | * @param href the {@code href} property |
| 250 | */ |
| 251 | @JsxSetter |
| 252 | public void setHref(final String href) throws MalformedURLException { |
| 253 | if (url_ == null) { |
| 254 | return; |
| 255 | } |
| 256 | |
| 257 | url_ = UrlUtils.toUrlUnsafe(href); |
| 258 | url_ = UrlUtils.removeRedundantPort(url_); |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * @return the origin |
no test coverage detected