org.richfaces.cdk.model.Trackable Maven / Gradle / Ivy
The newest version!
package org.richfaces.cdk.model;
/**
*
* Interface for model components that have related modification time.
*
*
* @author [email protected]
*/
public interface Trackable {
/**
*
* Last modification time for model information.
*
*
* @return
*/
long lastModified();
}