Last change
on this file since 12464 was
8506,
checked in by fschoepp, 12 years ago
|
#1888:
- Web project now creates custom html for each type we want to enter / display
- Added endpointConfigurationName to HiveServiceLocator (because Web Project contains more than one endpoint configuration)
- Removed logging statement from ConfigurationService to prevent exception during failure of loading ConfigurationSettings
- ApplicationManager: Changed default implementation to WebApplicationManager (instead of LightWeight) for testing purposes within Web Project
- WebApplicationManager: The application manager which returns plugin descriptors from the currently loaded assemblies (instead of LightweightAppManager)
- HiveService: Fixed a transaction bug
- IControllerService: Created a method to dispatch Scenarios to certain IScenarioManager (in this case HiveScenarioManager)
- Added more mappable types to ControllerModel
- PlaceholderControllerService dispatches all Scenarios to the HiveScenarioManager
- Web project now dispatches the scenario to the controller after pressing "Run Job"
|
File size:
1.2 KB
|
Rev | Line | |
---|
[6976] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6976] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 |
|
---|
| 24 | namespace HeuristicLab.Clients.Hive {
|
---|
[7132] | 25 | public interface IHiveServiceLocator {
|
---|
[6976] | 26 | string Username { get; set; }
|
---|
| 27 | string Password { get; set; }
|
---|
[8251] | 28 | string RemoteAddress { get; set; }
|
---|
[8506] | 29 | string EndpointConfigurationName { get; set; }
|
---|
[8251] | 30 | string IdentityCertificate { get; set; }
|
---|
[6976] | 31 | void CallHiveService(Action<IHiveService> call);
|
---|
| 32 | T CallHiveService<T>(Func<IHiveService, T> call);
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.