Package io.camunda.client.api.response
Interface UpdateTenantResponse
- All Known Implementing Classes:
UpdateTenantResponseImpl
public interface UpdateTenantResponse
-
Method Summary
Modifier and TypeMethodDescriptionReturns the description of the updated tenant.getName()Returns the name of the updated tenant.Returns the unique identifier (ID) of the updated tenant.longReturns the unique key of the updated tenant.
-
Method Details
-
getTenantKey
long getTenantKey()Returns the unique key of the updated tenant.The tenant key is a system-generated identifier that is unique across all tenants. It is primarily used internally by the system for efficient indexing and processing.
- Returns:
- the system-generated tenant key.
-
getTenantId
String getTenantId()Returns the unique identifier (ID) of the updated tenant.The tenant ID is a user-defined identifier for the tenant. It is specified when the tenant is created and is often used for human-readable identification or external references.
- Returns:
- the user-defined tenant ID.
-
getName
String getName()Returns the name of the updated tenant.- Returns:
- the tenant name.
-
getDescription
String getDescription()Returns the description of the updated tenant.
-