Introduce Makefile for Java build
[lgpl/argeo-commons.git] / org.argeo.cms.e4 / src / org / argeo / cms / e4 / monitoring / CmsSessionsView.java
index 0c73fd7ce2c755c7ccaf5aa05efcfa4a47f6a325..8a360509527e41ac4eb3a562498d3fe4784e757b 100644 (file)
@@ -10,8 +10,7 @@ import java.util.List;
 import javax.annotation.PostConstruct;
 import javax.naming.ldap.LdapName;
 
-import org.argeo.cms.CmsException;
-import org.argeo.cms.auth.CmsSession;
+import org.argeo.api.cms.CmsSession;
 import org.argeo.eclipse.ui.ColumnViewerComparator;
 import org.argeo.eclipse.ui.specific.EclipseUiSpecificUtils;
 import org.argeo.util.LangUtils;
@@ -55,7 +54,7 @@ public class CmsSessionsView {
                        private static final long serialVersionUID = -5234573509093747505L;
 
                        public String getText(Object element) {
-                               return ((CmsSession) element).getAuthorization().toString();
+                               return ((CmsSession) element).getDisplayName();
                        }
 
                        public String getToolTipText(Object element) {
@@ -154,7 +153,7 @@ public class CmsSessionsView {
                                try {
                                        srs = bc.getServiceReferences(CmsSession.class, null);
                                } catch (InvalidSyntaxException e) {
-                                       throw new CmsException("Cannot retrieve CMS sessions", e);
+                                       throw new IllegalArgumentException("Cannot retrieve CMS sessions", e);
                                }
                                List<CmsSession> res = new ArrayList<>();
                                for (ServiceReference<CmsSession> sr : srs) {