All Downloads are FREE. Search and download functionalities are using the official Maven repository.

restx.specs.GivenTimeLoaderFactoryMachine Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package restx.specs;

import com.google.common.collect.ImmutableSet;
import restx.factory.*;
import restx.specs.GivenTimeLoader;

@Machine
public class GivenTimeLoaderFactoryMachine extends SingleNameFactoryMachine {
    public static final Name NAME = Name.of(restx.specs.GivenTimeLoader.class, "time");

    public GivenTimeLoaderFactoryMachine() {
        super(0, new StdMachineEngine(NAME, 0, BoundlessComponentBox.FACTORY) {


            @Override
            public BillOfMaterials getBillOfMaterial() {
                return new BillOfMaterials(ImmutableSet.>of(

                ));
            }

            @Override
            protected restx.specs.GivenTimeLoader doNewComponent(SatisfiedBOM satisfiedBOM) {
                return new GivenTimeLoader(

                );
            }
        });
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy