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

org.kuali.common.deploy.dns.model.DnsmeCredentials Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package org.kuali.common.deploy.dns.model;

import org.kuali.common.util.Assert;

public final class DnsmeCredentials {

	public DnsmeCredentials(String apiKey, String secretKey) {
		Assert.noBlanks(apiKey, secretKey);
		this.apiKey = apiKey;
		this.secretKey = secretKey;
	}

	private final String apiKey;
	private final String secretKey;

	public String getApiKey() {
		return apiKey;
	}

	public String getSecretKey() {
		return secretKey;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy