blob: 6f510bdaa831fb1c76c871009b9d83517ad83166 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.activemq.maven.visualstudio;
public class Configuration {
private String name;
private String outputDirectory;
private String intermediateDirectory;
private int configurationType;
private int characterSet;
private String BuildLogFile;
private Tool[] tools;
public Configuration() {
super();
this.outputDirectory = "$(SolutionDir)$(ConfigurationName)";
this.intermediateDirectory = "$(ConfigurationName)\\$(ProjectName)";
this.configurationType = 4;
this.characterSet = 1;
this.BuildLogFile = "$(IntDir)\\$(ProjectName)\\BuildLog.htm";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getOutputDirectory() {
return outputDirectory;
}
public void setOutputDirectory(String outputDirectory) {
this.outputDirectory = outputDirectory;
}
public String getIntermediateDirectory() {
return intermediateDirectory;
}
public void setIntermediateDirectory(String intermediateDirectory) {
this.intermediateDirectory = intermediateDirectory;
}
public int getConfigurationType() {
return configurationType;
}
public void setConfigurationType(int configurationType) {
this.configurationType = configurationType;
}
public int getCharacterSet() {
return characterSet;
}
public void setCharacterSet(int characterSet) {
this.characterSet = characterSet;
}
public String getBuildLogFile() {
return BuildLogFile;
}
public void setBuildLogFile(String buildLogFile) {
BuildLogFile = buildLogFile;
}
public Tool[] getTools() {
return tools;
}
public void setTools(Tool[] tools) {
this.tools = tools;
}
}