com.shinesolutions.aemorchestrator.aem.AgentRunMode 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.aem;
public enum AgentRunMode {
AUTHOR("author"),
PUBLISH("author");
private final String value;
private AgentRunMode(String v) {
value = v;
}
@Override
public String toString() {
return this.value;
}
public String getValue() {
return this.value;
}
}