Class RegistryTenant
- java.lang.Object
-
- io.apicurio.multitenant.api.datamodel.RegistryTenant
-
public class RegistryTenant extends Object
Root Type for TenantModels a single tenant.
-
-
Constructor Summary
Constructors Constructor Description RegistryTenant()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAuthClientId()
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)String
getAuthServerUrl()
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registry (Required)String
getCreatedBy()
User that created the tenant (Required)Date
getCreatedOn()
Date when the tenant was created (Required)Object
getOrganizationId()
String
getTenantId()
Unique identifier of a tenant within a registry deployment (Required)void
setAuthClientId(String authClientId)
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)void
setAuthServerUrl(String authServerUrl)
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registry (Required)void
setCreatedBy(String createdBy)
User that created the tenant (Required)void
setCreatedOn(Date createdOn)
Date when the tenant was created (Required)void
setOrganizationId(Object organizationId)
void
setTenantId(String tenantId)
Unique identifier of a tenant within a registry deployment (Required)
-
-
-
Method Detail
-
getTenantId
public String getTenantId()
Unique identifier of a tenant within a registry deployment (Required)
-
setTenantId
public void setTenantId(String tenantId)
Unique identifier of a tenant within a registry deployment (Required)
-
getCreatedOn
public Date getCreatedOn()
Date when the tenant was created (Required)
-
setCreatedOn
public void setCreatedOn(Date createdOn)
Date when the tenant was created (Required)
-
getCreatedBy
public String getCreatedBy()
User that created the tenant (Required)
-
setCreatedBy
public void setCreatedBy(String createdBy)
User that created the tenant (Required)
-
getOrganizationId
public Object getOrganizationId()
-
setOrganizationId
public void setOrganizationId(Object organizationId)
-
getAuthServerUrl
public String getAuthServerUrl()
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registry (Required)
-
setAuthServerUrl
public void setAuthServerUrl(String authServerUrl)
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registry (Required)
-
getAuthClientId
public String getAuthClientId()
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)
-
setAuthClientId
public void setAuthClientId(String authClientId)
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)
-
-