Introduce OSAuthentication
[lgpl/argeo-commons.git] / security / plugins / org.argeo.security.ui.rcp / src / main / java / org / argeo / security / ui / rcp / SecureWorkbenchAdvisor.java
index 191a83aef06528bbf643a08c9de95140895d07a5..bca01e714b2388b353fdc741a1c8cb9e1530ed38 100644 (file)
@@ -5,16 +5,21 @@ import org.eclipse.ui.application.WorkbenchAdvisor;
 import org.eclipse.ui.application.WorkbenchWindowAdvisor;
 
 public class SecureWorkbenchAdvisor extends WorkbenchAdvisor {
-
        static final String DEFAULT_PERSPECTIVE_ID = "org.argeo.security.ui.adminSecurityPerspective"; //$NON-NLS-1$
-
        public final static String INITIAL_PERSPECTIVE_PROPERTY = "org.argeo.security.ui.initialPerspective";
+
+       private final String username;
        private String initialPerspective = System.getProperty(
                        INITIAL_PERSPECTIVE_PROPERTY, DEFAULT_PERSPECTIVE_ID);
 
+       public SecureWorkbenchAdvisor(String username) {
+               super();
+               this.username = username;
+       }
+
        public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(
                        IWorkbenchWindowConfigurer configurer) {
-               return new SecureWorkbenchWindowAdvisor(configurer);
+               return new SecureWorkbenchWindowAdvisor(configurer, username);
        }
 
        public String getInitialWindowPerspectiveId() {