Helper methods for working with multi tenancy
Modifiers | Name | Description |
---|---|---|
protected static class |
Tenants.CurrentTenant |
Type Params | Return Type | Name and description |
---|---|---|
|
static java.io.Serializable |
currentId() @return The current tenant id |
|
static java.io.Serializable |
currentId(java.lang.Class<? extends Datastore> datastoreClass) @return The current tenant id for the given datastore type |
|
static void |
eachTenant(groovy.lang.Closure callable) Execute the given closure for each tenant. |
|
static void |
eachTenant(java.lang.Class<? extends Datastore> datastoreClass, groovy.lang.Closure callable) Execute the given closure for each tenant. |
<T> |
static T |
withCurrent(groovy.lang.Closure<T> callable) Execute the given closure with the current tenant |
<T> |
static T |
withCurrent(java.lang.Class<? extends Datastore> datastoreClass, groovy.lang.Closure<T> callable) Execute the given closure with the current tenant |
<T> |
static T |
withId(java.io.Serializable tenantId, groovy.lang.Closure<T> callable) Execute the given closure with given tenant id |
<T> |
static T |
withId(java.lang.Class<? extends Datastore> datastoreClass, java.io.Serializable tenantId, groovy.lang.Closure<T> callable) Execute the given closure with given tenant id |
<T> |
static T |
withoutId(groovy.lang.Closure<T> callable) Execute the given closure without any tenant id. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Execute the given closure for each tenant.
callable
- The closureExecute the given closure for each tenant.
callable
- The closureExecute the given closure with the current tenant
callable
- The closureExecute the given closure with the current tenant
datastoreClass
- The datastore classcallable
- The closureExecute the given closure with given tenant id
tenantId
- The tenant idcallable
- The closureExecute the given closure with given tenant id
tenantId
- The tenant idcallable
- The closureExecute the given closure without any tenant id. In Multi tenancy mode SINGLE this will execute against the default data source. If multi tenancy mode MULTI this will execute without including the "tenantId" on any query. Use with caution.
callable
- The closure