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

restx.datetime.ClockModuleFactory Maven / Gradle / Ivy

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

import restx.factory.Module;
import restx.factory.Provides;

import java.time.Clock;

@Module(priority = 1000)
public class ClockModuleFactory {

     @Provides
     public Clock clock() {
        return Clock.systemDefaultZone();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy