Set the Subject / ID URL of the Resource. Does not update the Store.
(subject: string)
| 327 | |
| 328 | /** Set the Subject / ID URL of the Resource. Does not update the Store. */ |
| 329 | setSubject(subject: string): void { |
| 330 | tryValidURL(subject); |
| 331 | this.commitBuilder.subject = subject; |
| 332 | this.subject = subject; |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | enum RightType { |
no test coverage detected