Changeset 4133 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
- Timestamp:
- 08/02/10 17:27:24 (14 years ago)
- 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 584 584 response.StatusMessage = ApplicationConstants.RESPONSE_COMMUNICATOR_JOBRESULT_RECEIVED; 585 585 response.JobId = jobId; 586 response. finished = finished;586 response.Finished = finished; 587 587 588 588 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 168 168 } 169 169 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>(); 172 172 173 173 ClientDto client = DaoLocator.ClientDao.FindById(resourceId); 174 174 if (client != null) { 175 List<ClientGroup> groupsOfClient = new List<ClientGroup>(DaoLocator.ClientGroupDao.MemberOf(client));175 ClientGroupDtoList groupsOfClient = new ClientGroupDtoList(DaoLocator.ClientGroupDao.MemberOf(client)); 176 176 response.Obj = groupsOfClient; 177 177 response.Success = true; … … 179 179 } 180 180 else { 181 response.Obj = new List<ClientGroup>();181 response.Obj = new ClientGroupDtoList(); 182 182 response.Success = false; 183 183 response.StatusMessage = ApplicationConstants.RESPONSE_CLIENT_RESOURCE_NOT_FOUND; … … 217 217 } 218 218 #endregion 219 219 } 220 220 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ServerConsoleFacade.cs
r4092 r4133 184 184 } 185 185 186 public ResponseObject< List<ClientGroupDto>> GetAllGroupsOfResource(Guid resourceId) {186 public ResponseObject<ClientGroupDtoList> GetAllGroupsOfResource(Guid resourceId) { 187 187 using (contextFactory.GetContext()) { 188 188 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 76 76 </PropertyGroup> 77 77 <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> 78 84 <Reference Include="HeuristicLab.PluginInfrastructure-3.3"> 79 85 <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> … … 136 142 </Compile> 137 143 <Compile Include="Settings.cs" /> 138 <Compile Include="SpringTransaction.cs" />139 144 </ItemGroup> 140 145 <ItemGroup> -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Properties/AssemblyInfo.cs
r4121 r4133 55 55 // by using the '*' as shown below: 56 56 // [assembly: AssemblyVersion("1.0.*")] 57 [assembly: AssemblyVersion("3.3.0.412 0")]58 [assembly: AssemblyFileVersion("3.3.0.412 0")]59 [assembly: AssemblyBuildDate("2010/0 7/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.