Store UI context data in CMS View.
[lgpl/argeo-commons.git] / org.argeo.cms.ui / src / org / argeo / cms / ui / CmsView.java
index 8011dce59a9af024ef40ecb025c30cde7e80be31..44e2837ec177e5a0cead77028865df32e5b946c4 100644 (file)
@@ -6,6 +6,7 @@ import java.util.Map;
 
 import javax.security.auth.login.LoginContext;
 
+import org.argeo.cms.auth.CmsSession;
 import org.eclipse.swt.widgets.Control;
 import org.eclipse.swt.widgets.Shell;
 
@@ -36,7 +37,7 @@ public interface CmsView {
        boolean isAnonymous();
 
        /**
-        * Send an event to this topic. Does noothing by default., but if implemented it
+        * Send an event to this topic. Does nothing by default., but if implemented it
         * MUST set the {@link #CMS_VIEW_UID_PROPERTY} in the properties.
         */
        default void sendEvent(String topic, Map<String, Object> properties) {
@@ -61,6 +62,33 @@ public interface CmsView {
                throw new UnsupportedOperationException();
        }
 
+       default Void runAs(Runnable runnable) {
+               return doAs(new PrivilegedAction<Void>() {
+
+                       @Override
+                       public Void run() {
+                               if (runnable != null)
+                                       runnable.run();
+                               return null;
+                       }
+               });
+       }
+
+       default void stateChanged(String state, String title) {
+       }
+
+       default CmsSession getCmsSession() {
+               throw new UnsupportedOperationException();
+       }
+
+       default Object getData(String key) {
+               throw new UnsupportedOperationException();
+       }
+
+       default void setData(String key, Object value) {
+               throw new UnsupportedOperationException();
+       }
+
        static CmsView getCmsView(Control parent) {
                // find parent shell
                Shell topShell = parent.getShell();