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

com.causecode.fileuploader.util.Time.groovy Maven / Gradle / Ivy

/*
 * Copyright (c) 2016, CauseCode Technologies Pvt Ltd, India.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or
 * without modification, are not permitted.
 */
package com.causecode.fileuploader.util

/**
 * A class which contains time variables.
 */
class Time {

    static final long SECOND = 1L
    static final long MINUTE = 60 * SECOND
    static final long HOUR = 60 * MINUTE
    static final long DAY = 24 * HOUR
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy