Introduce UX scheduler
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / ux / CmsUi.java
index 011cc1deb3b30248ac90f1e1e76f234744658d0d..ff6f5f081c4fbf985db0e85a4885353471301a00 100644 (file)
@@ -1,7 +1,15 @@
 package org.argeo.api.cms.ux;
 
+/** The actual implementation of a user interface, using a given technology. */
 public interface CmsUi {
        Object getData(String key);
+
        void setData(String key, Object value);
 
+       CmsView getCmsView();
+
+       long getLastAccess();
+
+       void updateLastAccess();
+
 }