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

com.shinesolutions.aemorchestrator.model.AemCredentials Maven / Gradle / Ivy

Go to download

Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder

There is a newer version: 4.0.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy