org.kuali.common.deploy.dns.model.DnsmeCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kuali-deploy Show documentation
Show all versions of kuali-deploy Show documentation
Project containing deployment logic for Kuali applications
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;
}
}