/** * * 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.airavata.cloud.util; /** * The Class Constants. */ public class Constants { /** The Constant OS_AUTH_URL. */ // OpenStack openrc string constants. public static final String OS_AUTH_URL = "OS_AUTH_URL"; /** The Constant OS_IDENTITY_API_VERSION. */ public static final String OS_IDENTITY_API_VERSION = "OS_IDENTITY_API_VERSION"; /** The Constant OS_USERNAME. */ public static final String OS_USERNAME = "OS_USERNAME"; /** The Constant OS_PASSWORD. */ public static final String OS_PASSWORD = "OS_PASSWORD"; /** The Constant OS_USER_DOMAIN_NAME. */ public static final String OS_USER_DOMAIN_NAME = "OS_USER_DOMAIN_NAME"; /** The Constant OS_PROJECT_DOMAIN_NAME. */ public static final String OS_PROJECT_DOMAIN_NAME = "OS_PROJECT_DOMAIN_NAME"; /** The Constant OS_FLOATING_IP_POOL. */ public static final String OS_FLOATING_IP_POOL = "OS_FLOATING_IP_POOL"; /** The Constant OS_NETWORK_NAME. */ public static final String OS_NETWORK_NAME = "OS_NETWORK_NAME"; /** The Constant OS_IP_VERSION_DEFAULT. */ public static final Integer OS_IP_VERSION_DEFAULT = 4; }