
eu.drus.jpa.unit.mongodb.operation.MongoDbOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-unit-mongodb Show documentation
Show all versions of jpa-unit-mongodb Show documentation
JUnit extension for simple testing of JPA entities and components
The newest version!
package eu.drus.jpa.unit.mongodb.operation;
public final class MongoDbOperations {
private MongoDbOperations() {}
public static final MongoDbOperation UPDATE = new UpdateOperation();
public static final MongoDbOperation INSERT = new InsertOperation();
public static final MongoDbOperation REFRESH = new RefreshOperation();
public static final MongoDbOperation DELETE = new DeleteOperation();
public static final MongoDbOperation DELETE_ALL = new DeleteAllOperation();
public static final MongoDbOperation CLEAN_INSERT = new CompositeOperation(DELETE_ALL, INSERT);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy