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

org.openl.rules.common.LockInfo Maven / Gradle / Ivy

There is a newer version: 5.27.9-jakarta
Show newest version
package org.openl.rules.common;

import java.util.Date;

/**
 * Information on Project Lock.
 *
 * @author Aleh Bykhavets
 *
 */
public interface LockInfo {
    /**
     * Get date/time when the lock was set.
     *
     * @return date when the lock was set
     */
    Date getLockedAt();

    /**
     * Get id of user who set the lock.
     *
     * @return user who set the lock
     */
    CommonUser getLockedBy();

    boolean isLocked();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy