restx.specs.mongo.GivenJongoCollectionLoaderFactoryMachine Maven / Gradle / Ivy
package restx.specs.mongo;
import com.google.common.collect.ImmutableSet;
import restx.factory.*;
import restx.specs.mongo.GivenJongoCollectionLoader;
@Machine
public class GivenJongoCollectionLoaderFactoryMachine extends SingleNameFactoryMachine {
public static final Name NAME = Name.of(restx.specs.mongo.GivenJongoCollectionLoader.class, "collection");
public GivenJongoCollectionLoaderFactoryMachine() {
super(0, new StdMachineEngine(NAME, 0, BoundlessComponentBox.FACTORY) {
@Override
public BillOfMaterials getBillOfMaterial() {
return new BillOfMaterials(ImmutableSet.>of(
));
}
@Override
protected restx.specs.mongo.GivenJongoCollectionLoader doNewComponent(SatisfiedBOM satisfiedBOM) {
return new GivenJongoCollectionLoader(
);
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy