All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getstream.client.config.AuthenticationHandlerConfiguration Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package io.getstream.client.config;

/**
 * Bean designed to hold authentication credentials to access
 * getstream.io.
 */
public class AuthenticationHandlerConfiguration {

    /**
     * Getstream.io's API key.
     */
    private String apiKey;

    /**
     * Getstream.io's secret key.
     */
    private String secretKey;

    public String getApiKey() {
        return apiKey;
    }

    public void setApiKey(String apiKey) {
        this.apiKey = apiKey;
    }

    public String getSecretKey() {
        return secretKey;
    }

    public void setSecretKey(String secretKey) {
        this.secretKey = secretKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy