Class NewRegistryTenantRequest
- java.lang.Object
-
- io.apicurio.multitenant.api.datamodel.NewRegistryTenantRequest
-
public class NewRegistryTenantRequest extends Object
Root Type for NewTenantThe information required when creating a new tenant.
-
-
Constructor Summary
Constructors Constructor Description NewRegistryTenantRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAuthServerUrl()
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registryString
getClientId()
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)String
getOrganizationId()
ID of the organization the tenant belongs to (Required)String
getTenantId()
Unique identifier of a tenant within a registry deploymentvoid
setAuthServerUrl(String authServerUrl)
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registryvoid
setClientId(String clientId)
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)void
setOrganizationId(String organizationId)
ID of the organization the tenant belongs to (Required)void
setTenantId(String tenantId)
Unique identifier of a tenant within a registry deployment
-
-
-
Method Detail
-
getTenantId
public String getTenantId()
Unique identifier of a tenant within a registry deployment
-
setTenantId
public void setTenantId(String tenantId)
Unique identifier of a tenant within a registry deployment
-
getOrganizationId
public String getOrganizationId()
ID of the organization the tenant belongs to (Required)
-
setOrganizationId
public void setOrganizationId(String organizationId)
ID of the organization the tenant belongs to (Required)
-
getAuthServerUrl
public String getAuthServerUrl()
Http endpoint for the auth server (including realm) to be used for this tenant to authenticate against the registry
-
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
-
getClientId
public String getClientId()
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)
-
setClientId
public void setClientId(String clientId)
ClientId in the authentication server to be used by the registry to authenticate incoming requests made by the tenant (Required)
-
-