Package org.openengsb.core.api.model

Examples of org.openengsb.core.api.model.QueryRequest.deleted()


        QueryRequest request = QueryRequest.create();
        List<EDBObject> result = db.query(request);
        assertThat(result.size(), is(0));

        result = db.query(request.deleted());
        assertThat(result.size(), is(1));
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.