Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/02/10 17:27:24 (14 years ago)
Author:
cneumuel
Message:
  • Made HiveExperiment storable, so that a running HiveExperiment can be disconnected, stored and later resumed. (#1115)
  • Added Log to each JobItem (#1115)
Location:
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/ClientCommunicator.cs

    r4119 r4133  
    584584      response.StatusMessage = ApplicationConstants.RESPONSE_COMMUNICATOR_JOBRESULT_RECEIVED;
    585585      response.JobId = jobId;
    586       response.finished = finished;
     586      response.Finished = finished;
    587587
    588588      Logger.Info("END Job received for Storage - SUB method: " + jobId);
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/ClientManager.cs

    r4060 r4133  
    168168    }
    169169
    170     public ResponseObject<List<ClientGroup>> GetAllGroupsOfResource(Guid resourceId) {
    171       ResponseObject<List<ClientGroup>> response = new ResponseObject<List<ClientGroup>>();
     170    public ResponseObject<ClientGroupDtoList> GetAllGroupsOfResource(Guid resourceId) {
     171      ResponseObject<ClientGroupDtoList> response = new ResponseObject<ClientGroupDtoList>();
    172172
    173173      ClientDto client = DaoLocator.ClientDao.FindById(resourceId);
    174174      if (client != null) {
    175         List<ClientGroup> groupsOfClient = new List<ClientGroup>(DaoLocator.ClientGroupDao.MemberOf(client));
     175        ClientGroupDtoList groupsOfClient = new ClientGroupDtoList(DaoLocator.ClientGroupDao.MemberOf(client));
    176176        response.Obj = groupsOfClient;
    177177        response.Success = true;
     
    179179      }
    180180      else {
    181         response.Obj = new List<ClientGroup>();
     181        response.Obj = new ClientGroupDtoList();
    182182        response.Success = false;
    183183        response.StatusMessage = ApplicationConstants.RESPONSE_CLIENT_RESOURCE_NOT_FOUND;
     
    217217    }
    218218    #endregion
    219   }
     219 }
    220220}
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ServerConsoleFacade.cs

    r4092 r4133  
    184184    }
    185185
    186     public ResponseObject<List<ClientGroupDto>> GetAllGroupsOfResource(Guid resourceId) {
     186    public ResponseObject<ClientGroupDtoList> GetAllGroupsOfResource(Guid resourceId) {
    187187      using (contextFactory.GetContext()) {
    188188        secMan.Authorize("AccessUserGroup", sessionID, Guid.Empty);
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/HeuristicLab.Hive.Server.Core-3.3.csproj

    r4121 r4133  
    7676  </PropertyGroup>
    7777  <ItemGroup>
     78    <Reference Include="HeuristicLab.Collections-3.3">
     79      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath>
     80    </Reference>
     81    <Reference Include="HeuristicLab.Common-3.3">
     82      <HintPath>..\..\HeuristicLab.Hive.JobBase\3.3\bin\Debug\HeuristicLab.Common-3.3.dll</HintPath>
     83    </Reference>
    7884    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
    7985      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
     
    136142    </Compile>
    137143    <Compile Include="Settings.cs" />
    138     <Compile Include="SpringTransaction.cs" />
    139144  </ItemGroup>
    140145  <ItemGroup>
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Properties/AssemblyInfo.cs

    r4121 r4133  
    5555// by using the '*' as shown below:
    5656// [assembly: AssemblyVersion("1.0.*")]
    57 [assembly: AssemblyVersion("3.3.0.4120")]
    58 [assembly: AssemblyFileVersion("3.3.0.4120")]
    59 [assembly: AssemblyBuildDate("2010/07/30 13:39:26")]
     57[assembly: AssemblyVersion("3.3.0.4121")]
     58[assembly: AssemblyFileVersion("3.3.0.4121")]
     59[assembly: AssemblyBuildDate("2010/08/02 17:23:55")]
Note: See TracChangeset for help on using the changeset viewer.