org.activiti.springboot.boot.ActivitiProperties Maven / Gradle / Ivy
The newest version!
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activiti.springboot.boot;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import org.activiti.engine.impl.history.HistoryLevel;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.core.io.support.ResourcePatternResolver;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
@ConfigurationProperties("spring.activiti")
public class ActivitiProperties {
private boolean checkProcessDefinitions = true;
private boolean asyncExecutorActivate = false;
private String deploymentName = "SpringAutoDeployment";
private String mailServerHost = "localhost";
private int mailServerPort = 1025;
private String mailServerUserName;
private String mailServerPassword;
private String mailServerDefaultFrom;
private boolean mailServerUseSsl;
private boolean mailServerUseTls;
private String databaseSchemaUpdate = "true";
private String databaseSchema;
private boolean dbHistoryUsed = false;
private HistoryLevel historyLevel = HistoryLevel.NONE;
private String processDefinitionLocationPrefix = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX + "**/processes/";
private List processDefinitionLocationSuffixes = Arrays.asList("**.bpmn20.xml", "**.bpmn");
private List customMybatisMappers;
private List customMybatisXMLMappers;
private boolean useStrongUuids = true;
private boolean copyVariablesToLocalForTasks = true;
private String deploymentMode = "default";
private boolean serializePOJOsInVariablesToJson = true;
private String javaClassFieldForJackson = JsonTypeInfo.Id.CLASS.getDefaultPropertyName();
private List notGenerateTableList = Arrays.asList("ACT_RU_DEADLETTER_JOB",
"ACT_RU_JOB",
"ACT_RU_SUSPENDED_JOB",
"ACT_RU_TIMER_JOB");
public boolean isAsyncExecutorActivate() {
return asyncExecutorActivate;
}
public void setAsyncExecutorActivate(boolean asyncExecutorActivate) {
this.asyncExecutorActivate = asyncExecutorActivate;
}
public boolean isCheckProcessDefinitions() {
return checkProcessDefinitions;
}
public void setCheckProcessDefinitions(boolean checkProcessDefinitions) {
this.checkProcessDefinitions = checkProcessDefinitions;
}
public String getDeploymentName() {
return deploymentName;
}
public void setDeploymentName(String deploymentName) {
this.deploymentName = deploymentName;
}
public String getDatabaseSchemaUpdate() {
return databaseSchemaUpdate;
}
public void setDatabaseSchemaUpdate(String databaseSchemaUpdate) {
this.databaseSchemaUpdate = databaseSchemaUpdate;
}
public String getDatabaseSchema() {
return databaseSchema;
}
public void setDatabaseSchema(String databaseSchema) {
this.databaseSchema = databaseSchema;
}
public boolean isDbHistoryUsed() {
return dbHistoryUsed;
}
public void setDbHistoryUsed(boolean isDbHistoryUsed) {
this.dbHistoryUsed = isDbHistoryUsed;
}
public HistoryLevel getHistoryLevel() {
return historyLevel;
}
public void setHistoryLevel(HistoryLevel historyLevel) {
this.historyLevel = historyLevel;
}
public String getProcessDefinitionLocationPrefix() {
return processDefinitionLocationPrefix;
}
public void setProcessDefinitionLocationPrefix(
String processDefinitionLocationPrefix) {
this.processDefinitionLocationPrefix = processDefinitionLocationPrefix;
}
public List getProcessDefinitionLocationSuffixes() {
return processDefinitionLocationSuffixes;
}
public void setProcessDefinitionLocationSuffixes(
List processDefinitionLocationSuffixes) {
this.processDefinitionLocationSuffixes = processDefinitionLocationSuffixes;
}
public String getMailServerHost() {
return mailServerHost;
}
public void setMailServerHost(String mailServerHost) {
this.mailServerHost = mailServerHost;
}
public int getMailServerPort() {
return mailServerPort;
}
public void setMailServerPort(int mailServerPort) {
this.mailServerPort = mailServerPort;
}
public String getMailServerUserName() {
return mailServerUserName;
}
public void setMailServerUserName(String mailServerUserName) {
this.mailServerUserName = mailServerUserName;
}
public String getMailServerPassword() {
return mailServerPassword;
}
public void setMailServerPassword(String mailServerPassword) {
this.mailServerPassword = mailServerPassword;
}
public String getMailServerDefaultFrom() {
return mailServerDefaultFrom;
}
public void setMailServerDefaultFrom(String mailServerDefaultFrom) {
this.mailServerDefaultFrom = mailServerDefaultFrom;
}
public boolean isMailServerUseSsl() {
return mailServerUseSsl;
}
public void setMailServerUseSsl(boolean mailServerUseSsl) {
this.mailServerUseSsl = mailServerUseSsl;
}
public boolean isMailServerUseTls() {
return mailServerUseTls;
}
public void setMailServerUseTls(boolean mailServerUseTls) {
this.mailServerUseTls = mailServerUseTls;
}
public List getCustomMybatisMappers() {
return customMybatisMappers;
}
public void setCustomMybatisMappers(List customMyBatisMappers) {
this.customMybatisMappers = customMyBatisMappers;
}
public List getCustomMybatisXMLMappers() {
return customMybatisXMLMappers;
}
public void setCustomMybatisXMLMappers(List customMybatisXMLMappers) {
this.customMybatisXMLMappers = customMybatisXMLMappers;
}
public boolean isUseStrongUuids() {
return useStrongUuids;
}
public void setUseStrongUuids(boolean useStrongUuids) {
this.useStrongUuids = useStrongUuids;
}
public boolean isCopyVariablesToLocalForTasks() {
return copyVariablesToLocalForTasks;
}
public void setCopyVariablesToLocalForTasks(boolean copyVariablesToLocalForTasks) {
this.copyVariablesToLocalForTasks = copyVariablesToLocalForTasks;
}
public String getDeploymentMode() {
return deploymentMode;
}
public void setDeploymentMode(String deploymentMode) {
this.deploymentMode = deploymentMode;
}
public boolean isSerializePOJOsInVariablesToJson() {
return serializePOJOsInVariablesToJson;
}
public void setSerializePOJOsInVariablesToJson(boolean serializePOJOsInVariablesToJson) {
this.serializePOJOsInVariablesToJson = serializePOJOsInVariablesToJson;
}
public String getJavaClassFieldForJackson() {
return javaClassFieldForJackson;
}
public void setJavaClassFieldForJackson(String javaClassFieldForJackson) {
this.javaClassFieldForJackson = javaClassFieldForJackson;
}
public List getNotGenerateTableList() {
return notGenerateTableList;
}
public void setNotGenerateTableList(List notGenerateTableList) {
this.notGenerateTableList = notGenerateTableList;
}
}