Package | Description |
---|---|
org.axonframework.eventstore.mongo | |
org.axonframework.eventstore.mongo.criteria |
Modifier and Type | Method and Description |
---|---|
com.mongodb.DBCursor |
StorageStrategy.findEvents(com.mongodb.DBCollection collection,
MongoCriteria criteria)
Find all events that match the given
criteria in the given collection |
com.mongodb.DBCursor |
DocumentPerEventStorageStrategy.findEvents(com.mongodb.DBCollection collection,
MongoCriteria criteria) |
com.mongodb.DBCursor |
DocumentPerCommitStorageStrategy.findEvents(com.mongodb.DBCollection collection,
MongoCriteria criteria) |
Modifier and Type | Class and Description |
---|---|
class |
And
Representation of an AND operator for Mongo selection criteria.
|
class |
CollectionCriteria
Implementation of Collection operators for the Mongo Criteria, such as "In" and "NotIn".
|
class |
Equals
Representation of an Equals operator for Mongo selection criteria.
|
class |
Or
Represents the OR operator for use by the Mongo Event Store.
|
class |
SimpleMongoOperator
Implementation of the simple Mongo Operators (those without special structural requirements), such as Less Than,
Less Than Equals, etc.
|
Modifier and Type | Method and Description |
---|---|
MongoCriteria |
MongoProperty.greaterThan(Object expression) |
MongoCriteria |
MongoProperty.greaterThanEquals(Object expression) |
MongoCriteria |
MongoProperty.in(Object expression) |
MongoCriteria |
MongoProperty.is(Object expression) |
MongoCriteria |
MongoProperty.isNot(Object expression) |
MongoCriteria |
MongoProperty.lessThan(Object expression) |
MongoCriteria |
MongoProperty.lessThanEquals(Object expression) |
MongoCriteria |
MongoProperty.notIn(Object expression) |
Constructor and Description |
---|
And(MongoCriteria criteria1,
MongoCriteria criteria2)
Returns a criterium that requires both
criteria1 and criteria2 to be
true . |
Or(MongoCriteria criteria1,
MongoCriteria criteria2)
Initializes an OR operator where one of the given criteria must evaluate to
true . |
Copyright © 2010-2014. All Rights Reserved.