Modifier and Type | Class and Description |
---|---|
class |
PolicyEntity |
class |
ResourceEntity |
class |
ResourceServerEntity |
class |
ScopeEntity |
Modifier and Type | Method and Description |
---|---|
<T extends MongoIdentifiableEntity> |
MongoStore.countEntities(Class<T> type,
com.mongodb.DBObject query,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStore.loadEntities(Class<T> type,
com.mongodb.DBObject query,
com.mongodb.DBObject sort,
int firstResult,
int maxResults,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStore.loadEntities(Class<T> type,
com.mongodb.DBObject query,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStore.loadEntity(Class<T> type,
String id,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStore.loadSingleEntity(Class<T> type,
com.mongodb.DBObject query,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStore.updateEntities(Class<T> type,
com.mongodb.DBObject query,
com.mongodb.DBObject update,
MongoStoreInvocationContext context)
Bulk update of more entities of some type
|
Modifier and Type | Method and Description |
---|---|
void |
MongoStore.insertEntity(MongoIdentifiableEntity entity,
MongoStoreInvocationContext context)
Insert new entity
|
<S> boolean |
MongoStore.pullItemFromList(MongoIdentifiableEntity entity,
String listPropertyName,
S itemToPull,
MongoStoreInvocationContext context) |
<S> boolean |
MongoStore.pushItemToList(MongoIdentifiableEntity entity,
String listPropertyName,
S itemToPush,
boolean skipIfAlreadyPresent,
MongoStoreInvocationContext context) |
boolean |
MongoStore.removeEntity(MongoIdentifiableEntity entity,
MongoStoreInvocationContext context) |
void |
MongoStore.updateEntity(MongoIdentifiableEntity entity,
MongoStoreInvocationContext context)
Update existing entity
|
Modifier and Type | Method and Description |
---|---|
int |
MongoStore.removeEntities(Class<? extends MongoIdentifiableEntity> type,
com.mongodb.DBObject query,
boolean callback,
MongoStoreInvocationContext context) |
boolean |
MongoStore.removeEntity(Class<? extends MongoIdentifiableEntity> type,
String id,
MongoStoreInvocationContext context) |
Modifier and Type | Method and Description |
---|---|
<T extends MongoIdentifiableEntity> |
MongoStoreInvocationContext.getLoadedEntity(Class<T> type,
String id) |
Modifier and Type | Method and Description |
---|---|
void |
MongoStoreInvocationContext.addCreatedEntity(MongoIdentifiableEntity entity) |
void |
MongoStoreInvocationContext.addLoadedEntity(MongoIdentifiableEntity entity) |
void |
MongoStoreInvocationContext.addRemovedEntity(MongoIdentifiableEntity entity) |
void |
MongoStoreInvocationContext.addUpdateTask(MongoIdentifiableEntity entityToUpdate,
MongoTask task) |
Modifier and Type | Method and Description |
---|---|
void |
MongoStoreInvocationContext.beforeDBBulkUpdateOrRemove(Class<? extends MongoIdentifiableEntity> entityType) |
void |
MongoStoreInvocationContext.beforeDBSearch(Class<? extends MongoIdentifiableEntity> entityType) |
Modifier and Type | Method and Description |
---|---|
protected <T extends MongoIdentifiableEntity> |
MongoStoreImpl.convertCursor(Class<T> type,
com.mongodb.DBCursor cursor,
MongoStoreInvocationContext context) |
protected <T extends MongoIdentifiableEntity> |
MongoStoreImpl.convertDBObjectToEntity(Class<T> type,
com.mongodb.DBObject dbObject,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStoreImpl.countEntities(Class<T> type,
com.mongodb.DBObject query,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStoreImpl.loadEntities(Class<T> type,
com.mongodb.DBObject query,
com.mongodb.DBObject sort,
int firstResult,
int maxResults,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStoreImpl.loadEntities(Class<T> type,
com.mongodb.DBObject query,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStoreImpl.loadEntity(Class<T> type,
String id,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStoreImpl.loadSingleEntity(Class<T> type,
com.mongodb.DBObject query,
MongoStoreInvocationContext context) |
<T extends MongoIdentifiableEntity> |
MongoStoreImpl.updateEntities(Class<T> type,
com.mongodb.DBObject query,
com.mongodb.DBObject update,
MongoStoreInvocationContext context) |
Modifier and Type | Method and Description |
---|---|
void |
MongoStoreImpl.insertEntity(MongoIdentifiableEntity entity,
MongoStoreInvocationContext context) |
<S> boolean |
MongoStoreImpl.pullItemFromList(MongoIdentifiableEntity entity,
String listPropertyName,
S itemToPull,
MongoStoreInvocationContext context) |
<S> boolean |
MongoStoreImpl.pushItemToList(MongoIdentifiableEntity entity,
String listPropertyName,
S itemToPush,
boolean skipIfAlreadyPresent,
MongoStoreInvocationContext context) |
boolean |
MongoStoreImpl.removeEntity(MongoIdentifiableEntity entity,
MongoStoreInvocationContext context) |
void |
MongoStoreImpl.updateEntity(MongoIdentifiableEntity entity,
MongoStoreInvocationContext context) |
Modifier and Type | Method and Description |
---|---|
int |
MongoStoreImpl.removeEntities(Class<? extends MongoIdentifiableEntity> type,
com.mongodb.DBObject query,
boolean callback,
MongoStoreInvocationContext context) |
boolean |
MongoStoreImpl.removeEntity(Class<? extends MongoIdentifiableEntity> type,
String id,
MongoStoreInvocationContext context) |
Modifier and Type | Method and Description |
---|---|
<T extends MongoIdentifiableEntity> |
TransactionMongoStoreInvocationContext.getLoadedEntity(Class<T> type,
String id) |
<T extends MongoIdentifiableEntity> |
SimpleMongoStoreInvocationContext.getLoadedEntity(Class<T> type,
String id) |
Modifier and Type | Method and Description |
---|---|
void |
TransactionMongoStoreInvocationContext.addCreatedEntity(MongoIdentifiableEntity entity) |
void |
SimpleMongoStoreInvocationContext.addCreatedEntity(MongoIdentifiableEntity entity) |
void |
TransactionMongoStoreInvocationContext.addLoadedEntity(MongoIdentifiableEntity entity) |
void |
SimpleMongoStoreInvocationContext.addLoadedEntity(MongoIdentifiableEntity entity) |
void |
TransactionMongoStoreInvocationContext.addRemovedEntity(MongoIdentifiableEntity entity) |
void |
SimpleMongoStoreInvocationContext.addRemovedEntity(MongoIdentifiableEntity entity) |
void |
TransactionMongoStoreInvocationContext.addUpdateTask(MongoIdentifiableEntity entityToUpdate,
MongoTask task) |
void |
SimpleMongoStoreInvocationContext.addUpdateTask(MongoIdentifiableEntity entityToUpdate,
MongoTask task) |
Modifier and Type | Method and Description |
---|---|
void |
TransactionMongoStoreInvocationContext.beforeDBBulkUpdateOrRemove(Class<? extends MongoIdentifiableEntity> entityType) |
void |
SimpleMongoStoreInvocationContext.beforeDBBulkUpdateOrRemove(Class<? extends MongoIdentifiableEntity> entityType) |
void |
TransactionMongoStoreInvocationContext.beforeDBSearch(Class<? extends MongoIdentifiableEntity> entityType) |
void |
SimpleMongoStoreInvocationContext.beforeDBSearch(Class<? extends MongoIdentifiableEntity> entityType) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMongoAdapter<T extends MongoIdentifiableEntity> |
Modifier and Type | Class and Description |
---|---|
class |
MongoClientEntity |
class |
MongoClientTemplateEntity |
class |
MongoGroupEntity |
class |
MongoMigrationModelEntity |
class |
MongoOfflineUserSessionEntity |
class |
MongoOnlineUserSessionEntity |
class |
MongoRealmEntity |
class |
MongoRoleEntity |
class |
MongoUserConsentEntity |
class |
MongoUserEntity |
class |
MongoUserSessionEntity |
Copyright © 2016 JBoss by Red Hat. All rights reserved.