paybackman 53dc8b3bf9 This change addresses the Code Review from the previous commit. Changes include the following
Stronger Validation for Openstack.config.
 Better handling of detecting and raising NullReferenceExceptions
 Removal of dead code in a few places
 Added ability for each ServiceProvider to supply a ServiceMap which translates his name for a CoreService to something we can work with.
 Optimized code for dealing with Runspaces.

This change implements 2 separate use cases for Multi-Vendor support.

a. Initial Bootstrapping
b. Switch Providers

Change-Id: Ided462e5050214321e1ead50cf0498707d59128f
Partially-implements: blueprint implement-multiple-vendor-support
2014-06-11 14:53:06 -05:00

131 lines
5.1 KiB
C#

/* ============================================================================
Copyright 2014 Hewlett Packard
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.
============================================================================ */
using OpenStack.Common;
using OpenStack;
using System.Security;
using System.Reflection;
using OpenStack.Identity;
namespace OpenStack.Client.Powershell.Utility
{
public class Context
{
private IOpenStackServiceCatalog _serviceCatalog;
private Settings _settings;
//private Token _accessToken;
private string _productName = "OpenstackDotNetAPI";
private string _version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
private string _forecolor = "Green";
private string _currentRegion;
private ServiceProvider _currentServiceProvider;
#region Ctors
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public Context()
{
_settings = Settings.Default;
}
#endregion
#region Properties
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public ServiceProvider CurrentServiceProvider
{
get { return _currentServiceProvider; }
set { _currentServiceProvider = value; }
}
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public string CurrentRegion
{
get { return _currentRegion; }
set { _currentRegion = value; }
}
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public string Version
{
get { return _version; }
set { _version = value; }
}
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public string Forecolor
{
get { return _forecolor; }
set { _forecolor = value; }
}
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public string ProductName
{
get { return _productName; }
set { _productName = value; }
}
////==================================================================================================
///// <summary>
/////
///// </summary>
////==================================================================================================
// public Token AccessToken
// {
// get { return _accessToken; }
// set { _accessToken = value; }
// }
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public Settings Settings
{
get { return _settings; }
set { _settings = value; }
}
//==================================================================================================
/// <summary>
///
/// </summary>
//==================================================================================================
public IOpenStackServiceCatalog ServiceCatalog
{
get { return _serviceCatalog; }
set { _serviceCatalog = value; }
}
#endregion
}
}