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

restx.datetime.ClockModuleFactoryFactoryMachine Maven / Gradle / Ivy

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

import com.google.common.collect.ImmutableSet;
import restx.factory.*;
import restx.datetime.ClockModuleFactory;


@Machine
public class ClockModuleFactoryFactoryMachine extends DefaultFactoryMachine {
    private static final ClockModuleFactory module = new ClockModuleFactory();

    public ClockModuleFactoryFactoryMachine() {
        super(1000, new MachineEngine[] {
            new StdMachineEngine(Name.of(java.time.Clock.class, "clock"), 1000, BoundlessComponentBox.FACTORY) {
        
                @Override
                public BillOfMaterials getBillOfMaterial() {
                    return new BillOfMaterials(ImmutableSet.>of(
        
                    ));
                }

                @Override
                public java.time.Clock doNewComponent(SatisfiedBOM satisfiedBOM) {
	                    return module.clock(
	        
	                    );
                }
            },

        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy