Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/20/11 14:16:53 (13 years ago)
Author:
cneumuel
Message:

#1233

  • renamed UptimeCalendar and Appointment to Downtime
  • added service methods to delete plugins and get plugin by hash
  • made reverted TransactionManager change, made it non-static and added interface
  • moved magic numbers to application settings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/HiveServiceClient.cs

    r6426 r6452  
    8282  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.Hive.StateLog))]
    8383  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.Hive.Job))]
    84   [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.Hive.Appointment))]
     84  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.Hive.Downtime))]
    8585  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.Hive.PluginData))]
    8686  public partial class HiveItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     
    938938      "nsfer")]
    939939  [System.SerializableAttribute()]
    940   public partial class Appointment : HeuristicLab.Clients.Hive.HiveItem {
     940  public partial class Downtime : HeuristicLab.Clients.Hive.HiveItem {
    941941
    942942    [System.Runtime.Serialization.OptionalFieldAttribute()]
     
    15061506
    15071507    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddAppointment", ReplyAction = "http://tempuri.org/IHiveService/AddAppointmentResponse")]
    1508     System.Guid AddAppointment(HeuristicLab.Clients.Hive.Appointment appointment);
     1508    System.Guid AddAppointment(HeuristicLab.Clients.Hive.Downtime appointment);
    15091509
    15101510    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/DeleteAppointment", ReplyAction = "http://tempuri.org/IHiveService/DeleteAppointmentResponse")]
     
    15121512
    15131513    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateAppointment", ReplyAction = "http://tempuri.org/IHiveService/UpdateAppointmentResponse")]
    1514     void UpdateAppointment(HeuristicLab.Clients.Hive.Appointment appointment);
     1514    void UpdateAppointment(HeuristicLab.Clients.Hive.Downtime appointment);
    15151515
    15161516    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetScheduleForResource", ReplyAction = "http://tempuri.org/IHiveService/GetScheduleForResourceResponse")]
    1517     System.Collections.Generic.List<HeuristicLab.Clients.Hive.Appointment> GetScheduleForResource(System.Guid resourceId);
     1517    System.Collections.Generic.List<HeuristicLab.Clients.Hive.Downtime> GetScheduleForResource(System.Guid resourceId);
    15181518
    15191519    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddJob", ReplyAction = "http://tempuri.org/IHiveService/AddJobResponse")]
     
    16941694    }
    16951695
    1696     public System.Guid AddAppointment(HeuristicLab.Clients.Hive.Appointment appointment) {
     1696    public System.Guid AddAppointment(HeuristicLab.Clients.Hive.Downtime appointment) {
    16971697      return base.Channel.AddAppointment(appointment);
    16981698    }
     
    17021702    }
    17031703
    1704     public void UpdateAppointment(HeuristicLab.Clients.Hive.Appointment appointment) {
     1704    public void UpdateAppointment(HeuristicLab.Clients.Hive.Downtime appointment) {
    17051705      base.Channel.UpdateAppointment(appointment);
    17061706    }
    17071707
    1708     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Appointment> GetScheduleForResource(System.Guid resourceId) {
     1708    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Downtime> GetScheduleForResource(System.Guid resourceId) {
    17091709      return base.Channel.GetScheduleForResource(resourceId);
    17101710    }
Note: See TracChangeset for help on using the changeset viewer.