blob: f5a2cd302e652f49f22215bfdfdb00a6af6de51b [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.qpid.server.security.auth.manager;
import java.util.Map;
import org.apache.qpid.server.model.Broker;
import org.apache.qpid.server.model.ManagedObject;
import org.apache.qpid.server.model.ManagedObjectFactoryConstructor;
@ManagedObject( category = false, type = "SCRAM-SHA-1" , validChildTypes = "org.apache.qpid.server.security.auth.manager.ConfigModelPasswordManagingAuthenticationProvider#getSupportedUserTypes()")
public class ScramSHA1AuthenticationManager
extends AbstractScramAuthenticationManager<ScramSHA1AuthenticationManager>
{
public static final String PROVIDER_TYPE = "SCRAM-SHA-1";
public static final String HMAC_NAME = "HmacSHA1";
public static final String MECHANISM = "SCRAM-SHA-1";
public static final String DIGEST_NAME = "SHA-1";
@ManagedObjectFactoryConstructor
protected ScramSHA1AuthenticationManager(final Map<String, Object> attributes, final Broker broker)
{
super(attributes, broker);
}
@Override
protected String getMechanismName()
{
return MECHANISM;
}
@Override
public String getDigestName()
{
return DIGEST_NAME;
}
@Override
public String getHmacName()
{
return HMAC_NAME;
}
}