com.aeontronix.enhancedmule.tools.deploy.DeploymentConfig Maven / Gradle / Ivy
/*
* Copyright (c) Aeontronix 2019
*/
package com.aeontronix.enhancedmule.tools.deploy;
import com.aeontronix.enhancedmule.tools.runtime.CHApplication;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
public class DeploymentConfig {
private boolean customlog4j;
private boolean mergeExistingProperties = true;
private boolean mergeExistingPropertiesOverride;
private Map properties = new HashMap<>();
private HashSet overrideProperties = new HashSet<>();
protected Map fileProperties;
protected String filePropertiesPath = "config.properties";
protected boolean filePropertiesSecure;
private boolean persistentQueues;
private boolean persistentQueuesEncrypted;
private boolean objectStoreV1;
private boolean extMonitoring = true;
private boolean staticIPs;
public DeploymentConfig() {
}
public boolean isMergeExistingProperties() {
return mergeExistingProperties;
}
public void setMergeExistingProperties(boolean mergeExistingProperties) {
this.mergeExistingProperties = mergeExistingProperties;
}
public boolean isMergeExistingPropertiesOverride() {
return mergeExistingPropertiesOverride;
}
public void setMergeExistingPropertiesOverride(boolean mergeExistingPropertiesOverride) {
this.mergeExistingPropertiesOverride = mergeExistingPropertiesOverride;
}
public boolean isCustomlog4j() {
return customlog4j;
}
public void setCustomlog4j(boolean customlog4j) {
this.customlog4j = customlog4j;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
public void mergeExistingProperties(CHApplication existingApp) {
if (existingApp != null) {
Map props = existingApp.getProperties();
if (mergeExistingProperties && props != null) {
for (Map.Entry entry : props.entrySet()) {
String key = entry.getKey();
if ((!properties.containsKey(key) || mergeExistingPropertiesOverride) && !overrideProperties.contains(key)) {
properties.put(key, entry.getValue());
}
}
}
}
}
public void setOverrideProperty(String key, String value) {
if (properties == null) {
properties = new HashMap<>();
}
properties.put(key, value);
overrideProperties.add(key);
}
public Map getFileProperties() {
return fileProperties;
}
public void setFileProperties(Map fileProperties) {
this.fileProperties = fileProperties;
}
public String getFilePropertiesPath() {
return filePropertiesPath;
}
public void setFilePropertiesPath(String filePropertiesPath) {
this.filePropertiesPath = filePropertiesPath;
}
public boolean isFilePropertiesSecure() {
return filePropertiesSecure;
}
public void setFilePropertiesSecure(boolean filePropertiesSecure) {
this.filePropertiesSecure = filePropertiesSecure;
}
public void addFileProperty(String key, String value) {
if (fileProperties == null) {
fileProperties = new HashMap<>();
}
fileProperties.put(key,value);
}
public boolean isPersistentQueues() {
return persistentQueues;
}
public void setPersistentQueues(boolean persistentQueues) {
this.persistentQueues = persistentQueues;
}
public boolean isPersistentQueuesEncrypted() {
return persistentQueuesEncrypted;
}
public void setPersistentQueuesEncrypted(boolean persistentQueuesEncrypted) {
this.persistentQueuesEncrypted = persistentQueuesEncrypted;
}
public boolean isObjectStoreV1() {
return objectStoreV1;
}
public void setObjectStoreV1(boolean objectStoreV1) {
this.objectStoreV1 = objectStoreV1;
}
public boolean isExtMonitoring() {
return extMonitoring;
}
public void setExtMonitoring(boolean extMonitoring) {
this.extMonitoring = extMonitoring;
}
public boolean isStaticIPs() {
return staticIPs;
}
public void setStaticIPs(boolean staticIPs) {
this.staticIPs = staticIPs;
}
public void setProperty(String key, String value) {
if (properties == null) {
properties = new HashMap<>();
}
properties.put(key,value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy