Package jadex.commons
Interface ICacheableModel
-
- All Known Implementing Classes:
AbstractModelLoader.BrokenModel
,BDIModel
,jadex.kernelbase.CacheableKernelModel
,MicroModel
public interface ICacheableModel
Required interface for models to be managed by abstract model loader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFilename()
Get the filename.long
getLastChecked()
Get the last check time of the model.long
getLastModified()
Get the last modification time of the model.void
setLastChecked(long time)
Set the last check time of the model.
-
-
-
Method Detail
-
getLastChecked
long getLastChecked()
Get the last check time of the model.- Returns:
- The last check time of the model.
-
setLastChecked
void setLastChecked(long time)
Set the last check time of the model.- Parameters:
time
- The last check time of the model.
-
getLastModified
long getLastModified()
Get the last modification time of the model.- Returns:
- The last modification time of the model.
-
getFilename
java.lang.String getFilename()
Get the filename.- Returns:
- The filename.
-
-