Author: tchemit Date: 2008-01-24 20:39:51 +0000 (Thu, 24 Jan 2008) New Revision: 512 Modified: trunk/simexplorer-is-swing/src/java/fr/cemagref/simexplorer/is/ui/SimExplorerContext.java Log: suppression service d'authentification, pas besoin pour le client lourd (utiliser le storage service) Modified: trunk/simexplorer-is-swing/src/java/fr/cemagref/simexplorer/is/ui/SimExplorerContext.java =================================================================== --- trunk/simexplorer-is-swing/src/java/fr/cemagref/simexplorer/is/ui/SimExplorerContext.java 2008-01-24 20:39:02 UTC (rev 511) +++ trunk/simexplorer-is-swing/src/java/fr/cemagref/simexplorer/is/ui/SimExplorerContext.java 2008-01-24 20:39:51 UTC (rev 512) @@ -18,7 +18,6 @@ * ##% */ package fr.cemagref.simexplorer.is.ui; -import fr.cemagref.simexplorer.is.security.service.AuthenticationService; import fr.cemagref.simexplorer.is.service.MockStorageServiceImpl; import fr.cemagref.simexplorer.is.service.StorageService; import fr.cemagref.simexplorer.is.ui.actions.SimExplorerCommonActions; @@ -69,9 +68,6 @@ /** le service de données distant */ protected StorageService storageService; - /** le service d'authentification */ - protected AuthenticationService authenticationService; - /** * @return le parseur utilisé pour parser les options de la ligne de * commande. @@ -187,14 +183,6 @@ return service; } - /** @return le service d'authentification */ - public AuthenticationService getAuthenticationService() { - if (authenticationService == null) { - //authenticationService = new AuthenticationService(); - } - return authenticationService; - } - public void setQuit(boolean quit) { this.quit = quit; }
participants (1)
-
tchemit@users.labs.libre-entreprise.org