/*
* 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.internal.connection;
import com.mongodb.MongoCredential;
import com.mongodb.MongoInternalException;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.connection.ConnectionDescription;
import com.mongodb.lang.NonNull;
import com.mongodb.lang.Nullable;
public abstract class Authenticator {
private final MongoCredentialWithCache credential;
Authenticator(@NonNull final MongoCredentialWithCache credential) {
this.credential = credential;
}
@NonNull
MongoCredentialWithCache getMongoCredentialWithCache() {
return credential;
}
@NonNull
MongoCredential getMongoCredential() {
return credential.getCredential();
}
@NonNull
String getUserNameNonNull() {
String userName = credential.getCredential().getUserName();
if (userName == null) {
throw new MongoInternalException("User name can not be null");
}
return userName;
}
@NonNull
char[] getPasswordNonNull() {
char[] password = credential.getCredential().getPassword();
if (password == null) {
throw new MongoInternalException("Password can not be null");
}
return password;
}
@NonNull
<T> T getNonNullMechanismProperty(final String key, @Nullable final T defaultValue) {
T mechanismProperty = credential.getCredential().getMechanismProperty(key, defaultValue);
if (mechanismProperty == null) {
throw new MongoInternalException("Mechanism property can not be null");
}
return mechanismProperty;
}
abstract void authenticate(InternalConnection connection, ConnectionDescription connectionDescription);
abstract void authenticateAsync(InternalConnection connection, ConnectionDescription connectionDescription,
SingleResultCallback<Void> callback);
}