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

org.openl.rules.webstudio.properties.CurrentDateValue Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.webstudio.properties;

import java.util.Calendar;

/**
 * Handles current date value of the system.
 *
 * @author DLiauchuk
 */
public class CurrentDateValue implements ISystemValue {

    @Override
    public Object getValue() {
        Calendar cal = Calendar.getInstance();
        return cal.getTime();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy