Spring / Spring CredHub Interview questions
What is a JsonCredential?
JsonCredential is the Spring CredHub type for CredHub's JSON credential kind — a credential whose value is an arbitrary JSON object rather than a single string, username/password pair, or key material.
It's useful for grouping several related settings under one credential name, such as a set of API keys for a third-party service, instead of writing each one as a separate value credential.
It's written the same way as any other credential type, through a request built with a JsonCredential value, and read back as CredentialDetails<JsonCredential>, giving you the raw map of keys and values.
More Related questions...