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

com.sumologic.client.Credentials Maven / Gradle / Ivy

package com.sumologic.client;

/**
 * The sumo credentials to access the web service.
 *
 * @author Daphne Hsieh
 * @author Sebastian Mies
 * @version 1.0
 */
public class Credentials {
    private String email;
    private String password;

    /**
     * Constructs the credentials using email and password.
     *
     * @param email Your email
     * @param password Your password
     */
    public Credentials(String email, String password) {
        this.email = email;
        this.password = password;
    }

    /**
     * Returns the user name
     *
     * @return The user name
     */
    public String getEmail() {
        return this.email;
    }

    /**
     * Returns the password
     *
     * @return The password
     */
    public String getPassword() {
        return this.password;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy