From fe5a852ad33a11951c072483ba0f971ea4564ad9 Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Tue, 14 Jan 2025 15:19:17 +0700 Subject: [PATCH] docs: replace old links to the documentation portal Signed-off-by: Yurii Shynbuiev --- .../identus/agent/server/http/DocModels.scala | 2 +- .../castor/controller/DIDRegistrarEndpoints.scala | 4 ++-- .../identus/event/controller/EventEndpoints.scala | 2 +- .../identus/iam/entity/http/EntityEndpoints.scala | 4 ++-- .../iam/wallet/http/WalletManagementEndpoints.scala | 10 +++++----- .../CredentialDefinitionRegistryEndpoints.scala | 2 +- .../credentialschema/SchemaRegistryEndpoints.scala | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/agent/server/http/DocModels.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/agent/server/http/DocModels.scala index 96cae26a88..9f31588bc9 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/agent/server/http/DocModels.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/agent/server/http/DocModels.scala @@ -65,7 +65,7 @@ object DocModels { |It supports DID (Decentralized Identifiers) management, verifiable credential exchange, and secure messaging based on DIDComm standards. |The API is designed to be interoperable with various blockchain and DLT (Distributed Ledger Technology) platforms, ensuring wide compatibility and flexibility. |Key features include connection management, credential issuance and verification, and secure, privacy-preserving communication between entities. - |Additional information and the full list of capabilities can be found in the [Open Enterprise Agent documentation](https://docs.atalaprism.io/docs/category/prism-cloud-agent) + |Additional information and the full list of capabilities can be found in the [Open Enterprise Agent documentation](https://hyperledger.github.io/identus-docs/docs/category/prism-cloud-agent) |""".stripMargin), termsOfService = None, contact = None, diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/castor/controller/DIDRegistrarEndpoints.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/castor/controller/DIDRegistrarEndpoints.scala index bd0a2e42aa..9ad9516009 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/castor/controller/DIDRegistrarEndpoints.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/castor/controller/DIDRegistrarEndpoints.scala @@ -28,12 +28,12 @@ object DIDRegistrarEndpoints { s""" |The __${tagName}__ endpoints facilitate the management of [PRISM DIDs](https://github.com/input-output-hk/prism-did-method-spec) hosted in the cloud agent. | - |Implentation of [DID management](https://docs.atalaprism.io/docs/atala-prism/prism-cloud-agent/did-management/) in the cloud agent. + |Implentation of [DID management](https://hyperledger.github.io/identus-docs/docs/atala-prism/prism-cloud-agent/did-management/) in the cloud agent. |The agent securely manages and stores DIDs along with their keys in its secret storage. |These endpoints allow users to create, read, update, deactivate, and publish without direct exposure to the key material. |These DIDs can be utilized for various operations during issuance and verification processes. | - |More examples and tutorials can be found in this [documentation](https://docs.atalaprism.io/tutorials/category/dids/). + |More examples and tutorials can be found in this [documentation](https://hyperledger.github.io/identus-docs/tutorials/category/dids/). |""".stripMargin val tag = Tag(tagName, Some(tagDescription)) diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/event/controller/EventEndpoints.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/event/controller/EventEndpoints.scala index 6081fd5926..c2d8a998e0 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/event/controller/EventEndpoints.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/event/controller/EventEndpoints.scala @@ -30,7 +30,7 @@ object EventEndpoints { |- Issuance protocol notifications |- Presentation protocol notifications | - |For more detailed information regarding event notifications, please refer to this [documentation](https://docs.atalaprism.io/tutorials/webhooks/webhook). + |For more detailed information regarding event notifications, please refer to this [documentation](https://hyperledger.github.io/identus-docs/tutorials/webhooks/webhook). |""".stripMargin val tag = Tag(tagName, Some(tagDescription)) diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/entity/http/EntityEndpoints.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/entity/http/EntityEndpoints.scala index ce29855cca..3c2e60ae30 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/entity/http/EntityEndpoints.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/entity/http/EntityEndpoints.scala @@ -20,7 +20,7 @@ object EntityEndpoints { private val tagName = "Identity and Access Management" private val tagDescription = s""" - |The __${tagName}__ endpoints allow [agent administrators](https://docs.atalaprism.io/docs/concepts/glossary#administrator) + |The __${tagName}__ endpoints allow [agent administrators](https://hyperledger.github.io/identus-docs/docs/concepts/glossary#administrator) |to manage identity and access management for the agent's tenants. |It provides basic built-in IAM capabilities as an alternative to more feature rich external IAM solutions. | @@ -30,7 +30,7 @@ object EntityEndpoints { |Additionally, the administrator can create API keys for entities and provide them to the tenants out-of-band. |These API keys can then be used for authorization to access specific wallets. | - |For more detailed information related to the agent IAM and its usage, please refer to this [documentation](https://docs.atalaprism.io/docs/atala-prism/prism-cloud-agent/authentication). + |For more detailed information related to the agent IAM and its usage, please refer to this [documentation](https://hyperledger.github.io/identus-docs/docs/atala-prism/prism-cloud-agent/authentication). |""".stripMargin val tag = Tag(tagName, Some(tagDescription)) diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/wallet/http/WalletManagementEndpoints.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/wallet/http/WalletManagementEndpoints.scala index 5bb23c1726..5e325ae817 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/wallet/http/WalletManagementEndpoints.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/iam/wallet/http/WalletManagementEndpoints.scala @@ -26,15 +26,15 @@ object WalletManagementEndpoints { private val tagName = "Wallet Management" private val tagDescription = s""" - |The __${tagName}__ endpoints enable both users and administrators to manage [wallets](https://docs.atalaprism.io/docs/concepts/multi-tenancy#wallet). + |The __${tagName}__ endpoints enable both users and administrators to manage [wallets](https://hyperledger.github.io/identus-docs/docs/concepts/multi-tenancy#wallet). | |In a multitenant agent, wallet is a container for various resources (e.g. Connections, DIDs) and it isolates the access based on the authorization settings. - |[Admnistrator](https://docs.atalaprism.io/docs/concepts/glossary#administrator) can utilize the endpoints to manage and onboard [tenants](https://docs.atalaprism.io/docs/concepts/glossary#tenant). - |See [this example](https://docs.atalaprism.io/tutorials/multitenancy/tenant-onboarding-ext-iam) for instructions how to utilize the endpoints for administrator. + |[Admnistrator](https://hyperledger.github.io/identus-docs/docs/concepts/glossary#administrator) can utilize the endpoints to manage and onboard [tenants](https://hyperledger.github.io/identus-docs/docs/concepts/glossary#tenant). + |See [this example](https://hyperledger.github.io/identus-docs/tutorials/multitenancy/tenant-onboarding-ext-iam) for instructions how to utilize the endpoints for administrator. |Tenants can also manage and onboard their own wallets using these endpoints depending on the configuration. - |See [this document](https://docs.atalaprism.io/tutorials/multitenancy/tenant-onboarding-ext-iam) for a detailed example for self-service tenants onboarding. + |See [this document](https://hyperledger.github.io/identus-docs/tutorials/multitenancy/tenant-onboarding-ext-iam) for a detailed example for self-service tenants onboarding. | - |Wallet permissions are controlled by [UMA](https://docs.atalaprism.io/docs/concepts/glossary#uma) configuration which the agent + |Wallet permissions are controlled by [UMA](https://hyperledger.github.io/identus-docs/docs/concepts/glossary#uma) configuration which the agent |exposes endpoints to easily configure wallet access using `uma-permissions` resource. |The permissions can also be configured out-of-band directly on the external IAM provider that supports the UMA standard. |""".stripMargin diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialdefinition/CredentialDefinitionRegistryEndpoints.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialdefinition/CredentialDefinitionRegistryEndpoints.scala index 664981ba6f..89bb9e2e11 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialdefinition/CredentialDefinitionRegistryEndpoints.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialdefinition/CredentialDefinitionRegistryEndpoints.scala @@ -48,7 +48,7 @@ object CredentialDefinitionRegistryEndpoints { |""".stripMargin private val tagExternalDocumentation = ExternalDocumentation( - url = "https://docs.atalaprism.io/tutorials/category/credential-definition", + url = "https://hyperledger.github.io/identus-docs/tutorials/category/credential-definition", description = Some("Credential Definition documentation") ) diff --git a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialschema/SchemaRegistryEndpoints.scala b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialschema/SchemaRegistryEndpoints.scala index 1fae593271..4660d24da3 100644 --- a/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialschema/SchemaRegistryEndpoints.scala +++ b/cloud-agent/service/server/src/main/scala/org/hyperledger/identus/pollux/credentialschema/SchemaRegistryEndpoints.scala @@ -52,7 +52,7 @@ object SchemaRegistryEndpoints { |""".stripMargin private val tagExternalDocumentation = ExternalDocumentation( - url = "https://docs.atalaprism.io/tutorials/schemas/credential-schema", + url = "https://hyperledger.github.io/identus-docs/tutorials/schemas/credential-schema", description = Some("Credential Schema documentation") )