com.mongodb.AuthenticationMechanism Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* Copyright 2008-present MongoDB, Inc.
*
* 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 com.mongodb;
import java.util.HashMap;
import java.util.Map;
/**
* An enumeration of the MongodDB-supported authentication mechanisms.
*
* @since 3.0
*/
public enum AuthenticationMechanism {
/**
* The GSSAPI mechanism. See the RFC.
*/
GSSAPI("GSSAPI"),
/**
* The PLAIN mechanism. See the RFC.
*/
PLAIN("PLAIN"),
/**
* The MongoDB X.509 mechanism. This mechanism is available only with client certificates over SSL.
*/
MONGODB_X509("MONGODB-X509"),
/**
* The MongoDB Challenge Response mechanism.
*
* @deprecated This mechanism was replaced by {@link #SCRAM_SHA_1} in MongoDB 3.0, and is now deprecated
*/
@Deprecated
MONGODB_CR("MONGODB-CR"),
/**
* The SCRAM-SHA-1 mechanism. See the RFC.
*/
SCRAM_SHA_1("SCRAM-SHA-1"),
/**
* The SCRAM-SHA-256 mechanism. See the RFC.
* @since 3.8
*/
SCRAM_SHA_256("SCRAM-SHA-256");
private static final Map AUTH_MAP = new HashMap();
private final String mechanismName;
AuthenticationMechanism(final String mechanismName) {
this.mechanismName = mechanismName;
}
/**
* Get the mechanism name.
*
* @return the mechanism name
*/
public String getMechanismName() {
return mechanismName;
}
@Override
public String toString() {
return mechanismName;
}
static {
for (final AuthenticationMechanism value : values()) {
AUTH_MAP.put(value.getMechanismName(), value);
}
}
/**
* Gets the mechanism by its name.
*
* @param mechanismName the mechanism name
* @return the mechanism
* @see #getMechanismName()
*/
public static AuthenticationMechanism fromMechanismName(final String mechanismName) {
AuthenticationMechanism mechanism = AUTH_MAP.get(mechanismName);
if (mechanism == null) {
throw new IllegalArgumentException("Unsupported authMechanism: " + mechanismName);
}
return mechanism;
}
}