/**
* Copyright (C) 2014 Stratio (http://stratio.com)
*
* 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 com.stratio.decision.drools.configuration;
import java.util.List;
/**
* Created by jmartinmenor on 8/10/15.
*/
public class DroolsConfigurationGroupBean {
private String sessionName;
private int groupBatchSize;
private String groupId;
private String artifactId;
private String version;
private long scanFrequency;
private String queryName;
private String resultName;
private String mappingFile;
private String name;
private String sessionType; // stateless or stateful
private List<String> urlWorkBench;
private List<String> modelList;
private String queryResultName;
private String resultType;
public String getSessionName() {
return sessionName;
}
public void setSessionName(String sessionName) {
this.sessionName = sessionName;
}
public int getGroupBatchSize() {
return groupBatchSize;
}
public void setGroupBatchSize(int groupBatchSize) {
this.groupBatchSize = groupBatchSize;
}
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getArtifactId() {
return artifactId;
}
public void setArtifactId(String artifactId) {
this.artifactId = artifactId;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public long getScanFrequency() {
return scanFrequency;
}
public void setScanFrequency(long scanFrequency) {
this.scanFrequency = scanFrequency;
}
public String getQueryName() {
return queryName;
}
public void setQueryName(String queryName) {
this.queryName = queryName;
}
public String getResultName() {
return resultName;
}
public void setResultName(String resultName) {
this.resultName = resultName;
}
public String getMappingFile() {
return mappingFile;
}
public void setMappingFile(String mappingFile) {
this.mappingFile = mappingFile;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSessionType() {
return sessionType;
}
public void setSessionType(String sessionType) {
this.sessionType = sessionType;
}
public List<String> getModelList() {
return modelList;
}
public void setModelList(List<String> modelList) {
this.modelList = modelList;
}
public String getResultType() {
return resultType;
}
public void setResultType(String resultType) {
this.resultType = resultType;
}
public List<String> getUrlWorkBench() {
return urlWorkBench;
}
public void setUrlWorkBench(List<String> urlWorkBench) {
this.urlWorkBench = urlWorkBench;
}
}