- Timestamp:
- 06/20/11 14:16:53 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4
- Files:
-
- 4 added
- 5 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/HeuristicLab.Services.Hive.Common-3.4.csproj
r6369 r6452 94 94 </ItemGroup> 95 95 <ItemGroup> 96 <Compile Include="ApplicationConstants.cs" />97 96 <Compile Include="DataTransfer\SlaveStatistics.cs" /> 98 97 <Compile Include="DataTransfer\Statistics.cs" /> 99 98 <Compile Include="DataTransfer\UserStatistics.cs" /> 99 <Compile Include="ITransactionManager.cs" /> 100 100 <Compile Include="ServiceFaults\PluginAlreadyExistsFault.cs" /> 101 <Compile Include="Settings.Designer.cs"> 102 <AutoGen>True</AutoGen> 103 <DesignTimeSharedInput>True</DesignTimeSharedInput> 104 <DependentUpon>Settings.settings</DependentUpon> 105 </Compile> 106 <None Include="app.config" /> 101 107 <None Include="HeuristicLabServicesHiveCommonPlugin.cs.frame" /> 102 <Compile Include="DataTransfer\ Appointment.cs" />108 <Compile Include="DataTransfer\Downtime.cs" /> 103 109 <Compile Include="DataTransfer\Command.cs" /> 104 110 <Compile Include="DataTransfer\HiveExperimentPermission.cs" /> … … 125 131 <None Include="Properties\AssemblyInfo.cs.frame" /> 126 132 <Compile Include="ServiceContracts\IHiveService.cs" /> 133 <None Include="Settings.settings"> 134 <Generator>PublicSettingsSingleFileGenerator</Generator> 135 <LastGenOutput>Settings.Designer.cs</LastGenOutput> 136 </None> 127 137 </ItemGroup> 128 138 <ItemGroup> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/ServiceContracts/IHiveService.cs
r6431 r6452 127 127 Plugin GetPlugin(Guid pluginId); 128 128 [OperationContract] 129 Plugin GetPluginByHash(byte[] hash); 130 [OperationContract] 129 131 [FaultContract(typeof(PluginAlreadyExistsFault))] 130 132 Guid AddPlugin(Plugin plugin, List<PluginData> pluginData); … … 133 135 [OperationContract] 134 136 IEnumerable<PluginData> GetPluginDatas(List<Guid> pluginIds); 137 [OperationContract] 138 void DeletePlugin(Guid pluginId); 135 139 #endregion 136 140 … … 182 186 #endregion 183 187 184 #region AppointmentMethods185 [OperationContract] 186 Guid Add Appointment(Appointment appointment);187 188 [OperationContract] 189 void Delete Appointment(Guid appointmentId);190 191 [OperationContract] 192 void Update Appointment(Appointment appointment);193 194 [OperationContract] 195 IEnumerable< Appointment> GetScheduleForResource(Guid resourceId);188 #region Downtime Methods 189 [OperationContract] 190 Guid AddDowntime(Downtime downtime); 191 192 [OperationContract] 193 void DeleteDowntime(Guid downtimeId); 194 195 [OperationContract] 196 void UpdateDowntime(Downtime downtime); 197 198 [OperationContract] 199 IEnumerable<Downtime> GetDowntimesForResource(Guid resourceId); 196 200 #endregion 197 201 }
Note: See TracChangeset
for help on using the changeset viewer.