LinkResource
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 |
|
create_new
Creates a new link resource. A link resource is like a container that groups together several other resources of different classes.
See XML documentation for details
Parameters:
Name | Type | Description | Default |
---|---|---|---|
res_id
|
str
|
ID of this link resource |
required |
label
|
str
|
label of this link resource |
required |
link_to
|
Collection[str]
|
IDs of the resources that should be linked together (cardinality 1-n) |
required |
comments
|
Collection[str]
|
comments to this link (cardinality 1-n) |
required |
permissions
|
Permissions
|
permissions of this link resource |
PROJECT_SPECIFIC_PERMISSIONS
|
Returns:
Type | Description |
---|---|
LinkResource
|
A link resource |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
|
add_comment
Add a comment to the resource
Parameters:
Name | Type | Description | Default |
---|---|---|---|
comment
|
str
|
text |
required |
Returns:
Type | Description |
---|---|
LinkResource
|
The original resource, with the added comment |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
358 359 360 361 362 363 364 365 366 367 368 369 |
|
add_comment_multiple
Add several comments to the resource
Parameters:
Name | Type | Description | Default |
---|---|---|---|
comments
|
Collection[str]
|
list of texts |
required |
Returns:
Type | Description |
---|---|
LinkResource
|
The original resource, with the added comments |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
371 372 373 374 375 376 377 378 379 380 381 382 |
|
add_comment_optional
If the value is not empty, add it as comment, otherwise return the resource unchanged.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
comment
|
Any
|
text or empty value |
required |
Returns:
Type | Description |
---|---|
LinkResource
|
The original resource, with the added comment |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
384 385 386 387 388 389 390 391 392 393 394 395 396 |
|
add_migration_metadata
Add metadata from a SALSAH migration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
creation_date
|
str | None
|
creation date of the resource in SALSAH |
required |
iri
|
str | None
|
Original IRI in SALSAH |
None
|
ark
|
str | None
|
Original ARK in SALSAH |
None
|
Returns:
Type | Description |
---|---|
LinkResource
|
The original resource, with the added metadata |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
|