Improve namespace management
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / internal / runtime / CmsContextImpl.java
index ef9f0ec9a8df203ad6a50a588a1cf9b79ec88fa3..93ed319f153d61df8af7650c504b7b9336b0a373 100644 (file)
@@ -242,10 +242,18 @@ public class CmsContextImpl implements CmsContext {
                cmsSessionsByLocalId.remove(cmsSession.getLocalId());
        }
 
+       /**
+        * The {@link CmsSession} related to this UUID, or <code>null</null> if not
+        * registered.
+        */
        public synchronized CmsSessionImpl getCmsSessionByUuid(UUID uuid) {
                return cmsSessionsByUuid.get(uuid);
        }
 
+       /**
+        * The {@link CmsSession} related to this local id, or <code>null</null> if not
+        * registered.
+        */
        public synchronized CmsSessionImpl getCmsSessionByLocalId(String localId) {
                return cmsSessionsByLocalId.get(localId);
        }