Package africa.absa.inception.security
Class TenantUserDirectory
- java.lang.Object
-
- africa.absa.inception.security.TenantUserDirectory
-
- All Implemented Interfaces:
Serializable
public class TenantUserDirectory extends Object implements Serializable
The TenantUserDirectory class holds the information for a tenant user directory.- Author:
- Marcus Portmann
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TenantUserDirectory()Constructs a new TenantUserDirectory.TenantUserDirectory(UUID tenantId, UUID userDirectoryId)Constructs a new TenantUserDirectory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UUIDgetTenantId()Returns the Universally Unique Identifier (UUID) for the tenant.UUIDgetUserDirectoryId()Returns the Universally Unique Identifier (UUID) for the user directory.voidsetTenantId(UUID tenantId)Set the Universally Unique Identifier (UUID) for the tenant.voidsetUserDirectoryId(UUID userDirectoryId)Set the Universally Unique Identifier (UUID) for the user directory.
-
-
-
Method Detail
-
getTenantId
public UUID getTenantId()
Returns the Universally Unique Identifier (UUID) for the tenant.- Returns:
- the Universally Unique Identifier (UUID) for the tenant
-
getUserDirectoryId
public UUID getUserDirectoryId()
Returns the Universally Unique Identifier (UUID) for the user directory.- Returns:
- the Universally Unique Identifier (UUID) for the user directory
-
setTenantId
public void setTenantId(UUID tenantId)
Set the Universally Unique Identifier (UUID) for the tenant.- Parameters:
tenantId- the Universally Unique Identifier (UUID) for the tenant
-
setUserDirectoryId
public void setUserDirectoryId(UUID userDirectoryId)
Set the Universally Unique Identifier (UUID) for the user directory.- Parameters:
userDirectoryId- the Universally Unique Identifier (UUID) for the user directory
-
-