com.formkiq.server.config.DateService 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;
/**
* Service to provide Date Services.
*
*/
public interface DateService {
/**
* @return Date
*/
Date now();
}