@Singleton @Requires(beans=CookieTenantResolverConfiguration.class) @Requires(property="micronaut.multitenancy.tenantresolver.cookie.enabled",value="true",defaultValue="false") public class CookieTenantResolver extends Object implements TenantResolver
TenantResolver that resolves the tenant from a request cookie.| Modifier and Type | Field and Description | 
|---|---|
protected String | 
cookiename
The name of the header. 
 | 
ALL, DEFAULT, PREFIX| Constructor and Description | 
|---|
CookieTenantResolver(CookieTenantResolverConfiguration configuration)  | 
| Modifier and Type | Method and Description | 
|---|---|
Serializable | 
resolveTenantIdentifier()
Resolves the current tenant identifier. 
 | 
protected Serializable | 
resolveTenantIdentifierAtRequest(HttpRequest<Object> request)  | 
protected String cookiename
public CookieTenantResolver(CookieTenantResolverConfiguration configuration)
configuration - CookieTenantResolver configurationpublic Serializable resolveTenantIdentifier() throws TenantNotFoundException
TenantResolverResolves the current tenant identifier.
In a Multi Tenant setup where a single database is being used amongst multiple tenants this would be the object that is used as the tenantId property for each domain class.
resolveTenantIdentifier in interface TenantResolverTenantNotFoundException - if tenant not foundprotected Serializable resolveTenantIdentifierAtRequest(HttpRequest<Object> request) throws TenantNotFoundException
request - The HTTP requestTenantNotFoundException - A exception thrown if the tenant could not be resolved.