Package io.camunda.client.impl.response
Class UpdateTenantResponseImpl
java.lang.Object
io.camunda.client.impl.response.UpdateTenantResponseImpl
- All Implemented Interfaces:
UpdateTenantResponse
-
Constructor Summary
Constructors -
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.setResponse(TenantUpdateResult response)
-
Constructor Details
-
UpdateTenantResponseImpl
public UpdateTenantResponseImpl()
-
-
Method Details
-
getTenantKey
public long getTenantKey()Description copied from interface:UpdateTenantResponseReturns 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.
- Specified by:
getTenantKeyin interfaceUpdateTenantResponse- Returns:
- the system-generated tenant key.
-
getTenantId
Description copied from interface:UpdateTenantResponseReturns 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.
- Specified by:
getTenantIdin interfaceUpdateTenantResponse- Returns:
- the user-defined tenant ID.
-
getName
Description copied from interface:UpdateTenantResponseReturns the name of the updated tenant.- Specified by:
getNamein interfaceUpdateTenantResponse- Returns:
- the tenant name.
-
getDescription
Description copied from interface:UpdateTenantResponseReturns the description of the updated tenant.- Specified by:
getDescriptionin interfaceUpdateTenantResponse
-
setResponse
-