
com.northernwall.hadrian.config.Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Hadrian Show documentation
Show all versions of Hadrian Show documentation
Hadrian is a DevOps UI, Inventory, and Auditing system that plugs into other tools to execute actions.
/*
* Copyright 2014 Richard Thurston.
*
* 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.northernwall.hadrian.config;
import com.northernwall.hadrian.domain.Environment;
import com.northernwall.hadrian.domain.InboundProtocol;
import java.util.LinkedList;
import java.util.List;
public class Config {
public String mavenGroupId = "";
public String versionUrl = "";
public String availabilityUrl = "";
public String smokeTestUrl = "";
public String deploymentFolder = "";
public String dataFolder = "";
public String logsFolder = "";
public String gitUiURL = "";
public String securityGroupName = "";
public String moduleConfigName = "";
public String hostSpecialInstructions = "";
public String hostSpecialInstructionsTrueSla = "";
public String hostSpecialInstructionsFalseSla = "";
public boolean enableHostProvisioning = false;
public boolean enableHostReboot = false;
public boolean enableVipProvisioning = false;
public boolean enableVipMigration = false;
public int minCpu = 2;
public int maxCpu = 4;
public int minMemory = 2;
public int maxMemory = 8;
public int minStorage = 25;
public int maxStorage = 100;
public int maxCount = 10;
public int maxTotalCount = 100;
public List dataCenters = new LinkedList<>();
public List environmentNames = new LinkedList<>();
public List environments = new LinkedList<>();
public List platforms = new LinkedList<>();
public List inboundProtocols = new LinkedList<>();
public List priorityModes = new LinkedList<>();
public List domains = new LinkedList<>();
public List artifactTypes = new LinkedList<>();
public List scopes = new LinkedList<>();
public List folderWhiteList = new LinkedList<>();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy