Fix Javadoc issue
[gpl/argeo-suite.git] / org.argeo.app.ui / src / org / argeo / app / ui / SuiteEvent.java
index c80be8e877d4dd7a33390a43702e93f676e7be7d..b4082322339c05db06a064e7849ee7173a196843 100644 (file)
@@ -21,11 +21,13 @@ public enum SuiteEvent implements CmsEvent {
        public final static String CONTENT_PATH = "contentPath";
 
        // JCR
+       @Deprecated
        public final static String NODE_PATH = "path";
+       @Deprecated
        public final static String WORKSPACE = "workspace";
 
        public String getTopicBase() {
-               return "argeo/suite/ui";
+               return "argeo.suite.ui";
        }
 
        public static Map<String, Object> eventProperties(Content content) {
@@ -34,10 +36,13 @@ public enum SuiteEvent implements CmsEvent {
                return properties;
        }
 
+       @Deprecated
        public static Map<String, Object> eventProperties(Node node) {
                Map<String, Object> properties = new HashMap<>();
-               properties.put(NODE_PATH, Jcr.getPath(node));
-               properties.put(WORKSPACE, Jcr.getWorkspaceName(node));
+               String contentPath = '/' + Jcr.getWorkspaceName(node) + Jcr.getPath(node);
+               properties.put(CONTENT_PATH, contentPath);
+//             properties.put(NODE_PATH, Jcr.getPath(node));
+//             properties.put(WORKSPACE, Jcr.getWorkspaceName(node));
                return properties;
        }