com.formkiq.server.config.DateServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
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();
}
}