Changeset 7532
- Timestamp:
- Nov 26, 2018, 1:19:11 PM (4 years ago)
- Location:
- trunk/src/core/net/sf/basedb/core
- Files:
-
- 5 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/Application.java
r7521 r7532 92 92 93 93 /** 94 The name of the external authenication class, if any.95 */96 //private static String authenticationDriver;97 98 /**99 94 The name of the secondary storage controller class, if any. 100 95 */ … … 450 445 451 446 Config.init(); 452 //authenticationDriver = Config.getString("auth.driver");453 //log.info("auth.driver = " + authenticationDriver);454 455 447 secondaryStorageDriver = Config.getString("secondary.storage.driver"); 456 448 log.info("secondary.storage.driver = " + secondaryStorageDriver); … … 741 733 } 742 734 743 /**744 Check if BASE is using internal or external authentication.745 @return Always true746 @see #getAuthenticator()747 @deprecated In 3.3, no replacement748 */749 @Deprecated750 public static boolean isUsingInternalAuthentication()751 {752 return true;753 }754 755 /**756 Get an object of the class that is used for external757 authentication. The authenticator is initialised before it is returned.758 If internal authentication is used, this method returns null.759 @return Always null760 @throws BaseException If the authenticator class could not be loaded761 @see #isUsingInternalAuthentication()762 @deprecated In 3.3, no replacement763 */764 @Deprecated765 static net.sf.basedb.core.authentication.Authenticator getAuthenticator()766 throws BaseException767 {768 return null;769 }770 771 772 735 public static ExtensionsManager getExtensionsManager() 773 736 {
Note: See TracChangeset
for help on using the changeset viewer.