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

com.redis.riot.file.AwsCredentials Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package com.redis.riot.file;

import lombok.ToString;

@ToString
public class AwsCredentials {

	private String accessKey;

	private String secretKey;

	public String getAccessKey() {
		return accessKey;
	}

	public void setAccessKey(String accessKey) {
		this.accessKey = accessKey;
	}

	public String getSecretKey() {
		return secretKey;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy