An AST transformation that makes a particular class or method execute without a tenant id. For example:
class FooService {
@WithoutTenant
void updateFoo() {
...
}
}
Type | Name and Description |
---|---|
java.lang.Class<? extends ConnectionSourcesProvider>[] |
datastore If you are using multiple GORM implementations and wish to create a transaction for a specific implementation then use this. |
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() |
If you are using multiple GORM implementations and wish to create a transaction for a specific implementation then use this. For example @Transactional(forDatastore=HibernateDatastore)
@default {}