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

net.eightlives.friendlyssl.config.ClockConfig Maven / Gradle / Ivy

package net.eightlives.friendlyssl.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.time.Clock;

@Configuration
public class ClockConfig {

    @Bean
    public Clock clock() {
        return Clock.systemUTC();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy