📄 noneauthenticationserviceimpl.java
字号:
/* Derby - Class org.apache.derby.impl.jdbc.authentication.NoneAuthenticationServiceImpl Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */package org.apache.derby.impl.jdbc.authentication;import org.apache.derby.iapi.reference.MessageId;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.services.i18n.MessageService;import org.apache.derby.iapi.jdbc.AuthenticationService;import org.apache.derby.authentication.UserAuthenticator;import org.apache.derby.iapi.services.property.PropertyUtil;import java.util.Properties;/** * This authentication service does not care much about authentication. * <p> * It is a quiescient authentication service that will basically satisfy * any authentication request, as JBMS system was not instructed to have any * particular authentication scheme to be loaded at boot-up time. * * @author Francois */public final class NoneAuthenticationServiceImpl extends AuthenticationServiceBase implements UserAuthenticator { // // ModuleControl implementation (overriden) // /** * Check if we should activate this authentication service. */ public boolean canSupport(Properties properties) { return !requireAuthentication(properties); } /** * @see org.apache.derby.iapi.services.monitor.ModuleControl#boot * @exception StandardException upon failure to load/boot the expected * authentication service. */ public void boot(boolean create, Properties properties) throws StandardException { // we call the super in case there is anything to get initialized. super.boot(create, properties); // nothing special to be done, other than setting other than // setting ourselves as being ready and loading the proper // authentication scheme for this service //. this.setAuthenticationService(this); } /* ** UserAuthenticator */ /** * Authenticate the passed-in user's credentials. * * @param userName The user's name used to connect to JBMS system * @param userPassword The user's password used to connect to JBMS system * @param databaseName The database which the user wants to connect to. * @param info Additional jdbc connection info. */ public boolean authenticateUser(String userName, String userPassword, String databaseName, Properties info ) { // Since this authentication service does not really provide // any particular authentication, therefore we satisfy the request. // and always authenticate successfully the user. // return true; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -