io.deepsense.neptune.clientlibrary.api.Credentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-client-library Show documentation
Show all versions of neptune-client-library Show documentation
Enables integration with Neptune in your Java code
/**
* Copyright (c) 2016, CodiLime Inc.
*/
package io.deepsense.neptune.clientlibrary.api;
import java.util.Optional;
public interface Credentials {
Optional getUsername();
Optional getPassword();
Credentials empty = new Credentials() {
@Override
public Optional getUsername() {
return Optional.empty();
}
@Override
public Optional getPassword() {
return Optional.empty();
}
};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy