int |
UrlAliasRepository.delete(List<UUID> urlAliasUuids) |
Remove the entries with the provided UUIDs (PK).
|
de.digitalcollections.model.list.paging.PageResponse<de.digitalcollections.model.identifiable.alias.LocalizedUrlAliases> |
UrlAliasRepository.find(de.digitalcollections.model.list.paging.PageRequest pageRequest) |
Generic request method for getting a parametrized list.
|
de.digitalcollections.model.identifiable.alias.LocalizedUrlAliases |
UrlAliasRepository.findAllPrimaryLinks(String slug) |
Retrieve all primary links corresponding to a slug.
|
default de.digitalcollections.model.identifiable.alias.LocalizedUrlAliases |
UrlAliasRepository.findPrimaryLinksForWebsite(UUID websiteUuid,
String slug) |
Retrieve the primary links corresponding to a slug and the target's language.
|
de.digitalcollections.model.identifiable.alias.LocalizedUrlAliases |
UrlAliasRepository.findPrimaryLinksForWebsite(UUID websiteUuid,
String slug,
boolean considerLanguage) |
Retrieve the primary links corresponding to a slug.
|
de.digitalcollections.model.identifiable.alias.LocalizedUrlAliases |
UrlAliasRepository.getAllForTarget(UUID uuid) |
Retrieve all slugs of a link target.
|
de.digitalcollections.model.identifiable.alias.UrlAlias |
UrlAliasRepository.getByUuid(UUID uuid) |
Retrieve the UrlAlias with the supplied UUID (PK).
|
boolean |
UrlAliasRepository.hasUrlAlias(String slug,
UUID websiteUuid,
Locale targetLanguage) |
Check whether an entry exists for the passed website UUID, slug and language.
|
de.digitalcollections.model.identifiable.alias.UrlAlias |
UrlAliasRepository.save(de.digitalcollections.model.identifiable.alias.UrlAlias urlAlias) |
Save an UrlAlias object.
|
de.digitalcollections.model.identifiable.alias.UrlAlias |
UrlAliasRepository.update(de.digitalcollections.model.identifiable.alias.UrlAlias urlAlias) |
Update an existing object.
|