com.shinesolutions.aemorchestrator.model.AemCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-orchestrator Show documentation
Show all versions of aem-orchestrator Show documentation
Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder
package com.shinesolutions.aemorchestrator.model;
public class AemCredentials {
private UserPasswordCredentials replicatorCredentials;
private UserPasswordCredentials orchestratorCredentials;
public UserPasswordCredentials getReplicatorCredentials() {
return replicatorCredentials;
}
public void setReplicatorCredentials(UserPasswordCredentials replicatorCredentials) {
this.replicatorCredentials = replicatorCredentials;
}
public UserPasswordCredentials getOrchestratorCredentials() {
return orchestratorCredentials;
}
public void setOrchestratorCredentials(UserPasswordCredentials orchestratorCredentials) {
this.orchestratorCredentials = orchestratorCredentials;
}
}