com.aerospike.vector.client.auth.Credentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avs-client-java Show documentation
Show all versions of avs-client-java Show documentation
This project includes the Java client for Aerospike Vector Search for high-performance data interactions.
The newest version!
package com.aerospike.vector.client.auth;
/**
* Credentials to access vector service.
*/
public interface Credentials {
/**
* Retrieves the username.
*
* @return the username as a String.
*/
String username();
}