/* * Copyright (c) 2012 S.C. Axemblr Software Solutions S.R.L * * 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.axemblr.provisionr.cloudstack; /** * Building a pool of VM's on CloudStack requires more knowledge of the cloud's architecture, * You need to know things like in what zone to build the pool, the ID's of service offerings, network offerings, * and more. * <p/> * All the information is passed via Provider Options. This class stores some of the option names. */ public class ProviderOptions { private ProviderOptions() { throw new RuntimeException(ProviderOptions.class.getName() + " should not be instantiated"); } public static final String ZONE_ID = "zoneId"; public static final String TEMPLATE_ID = "templateId"; public static final String SERVICE_OFFERING_ID = "serviceOfferingId"; public static final String NETWORK_OFFERING_ID = "networkOfferingId"; }