forked from community/device-mgt-core
parent
3baaed0ea5
commit
1b51ad0228
@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.carbon.webapp.authenticator.framework.config;
|
||||
|
||||
/**
|
||||
* This defines the contract for AuthenticatorConfigService to expose authenticator configs in webapp-authenticators.xml.
|
||||
*/
|
||||
public interface AuthenticatorConfigService {
|
||||
|
||||
AuthenticatorConfig getAuthenticatorConfig(String authenticatorName) throws InvalidConfigurationStateException;
|
||||
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.carbon.webapp.authenticator.framework.config.impl;
|
||||
|
||||
import org.wso2.carbon.webapp.authenticator.framework.config.AuthenticatorConfig;
|
||||
import org.wso2.carbon.webapp.authenticator.framework.config.AuthenticatorConfigService;
|
||||
import org.wso2.carbon.webapp.authenticator.framework.config.InvalidConfigurationStateException;
|
||||
import org.wso2.carbon.webapp.authenticator.framework.config.WebappAuthenticatorConfig;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* This holds implementation of AuthenticatorConfigService.
|
||||
*/
|
||||
public class AuthenticatorConfigServiceImpl implements AuthenticatorConfigService {
|
||||
|
||||
@Override
|
||||
public AuthenticatorConfig getAuthenticatorConfig(String authenticatorName) throws
|
||||
InvalidConfigurationStateException {
|
||||
List<AuthenticatorConfig> configs = WebappAuthenticatorConfig.getInstance().getAuthenticators();
|
||||
int index = 0;
|
||||
if (authenticatorName == null || authenticatorName.isEmpty()) {
|
||||
return null;
|
||||
}
|
||||
for (int i = 0; i < configs.size(); i++) {
|
||||
AuthenticatorConfig authenticatorConfig = configs.get(i);
|
||||
if (authenticatorName.equals(authenticatorConfig.getName())) {
|
||||
index = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return configs.get(index);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue