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

com.formkiq.server.config.DateServiceImpl Maven / Gradle / Ivy

package com.formkiq.server.config;

import java.util.Date;

import org.springframework.stereotype.Service;

/**
 * Date Service implementation.
 *
 */
@Service
public class DateServiceImpl implements DateService {

    @Override
    public Date now() {
        return new Date();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy