Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 10:44:14 (14 years ago)
Author:
cneumuel
Message:

merged with changes from Hive-3.2

Location:
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/ApplicationConstants.cs

    r4092 r4141  
    8787    public static string RESPONSE_COMMUNICATOR_SEND_JOBRESULT = "Please send the Jobresult to the server";
    8888    public static string RESPONSE_COMMUNICATOR_PLUGINS_SENT = "Communicator.PluginsSent";
     89    public static string RESPONSE_COMMUNICATOR_PLUGINS_NOT_AVAIL = "Communicator.PluginsNotAvail";
    8990    public static string RESPONSE_COMMUNICATOR_JOB_WAS_ABORTED = "Job was aborted";
    9091
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/BusinessObjects/ClientDto.cs

    r4133 r4141  
    2727using HeuristicLab.Common;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29                                    
     29
    3030namespace HeuristicLab.Hive.Contracts.BusinessObjects {
    3131
    32   public enum State { NullState, Idle, Calculating, Offline, Finished, Abort, RequestSnapshot, RequestSnapshotSent, Pending };
     32  public enum State { NullState, Idle, Calculating, Offline, Finished, Abort, RequestSnapshot, RequestSnapshotSent, Pending, Failed };
    3333  public enum CalendarState { Fetch, ForceFetch, Fetching, Fetched, NotAllowedToFetch };
    3434
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/BusinessObjects/HivePluginInfoDto.cs

    r4133 r4141  
    4545    private string storableVersion;
    4646
     47    [Storable]
     48    [DataMember]
     49    public Boolean Update { get; set; }
     50
    4751    public HivePluginInfoDto() { }
    4852
     
    6468      clone.Name = this.Name;
    6569      clone.Version = (Version)this.Version.Clone();
     70      clone.Update = this.Update;
    6671      return clone;
    6772    }
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/BusinessObjects/JobDto.cs

    r4133 r4141  
    5353    [Storable]
    5454    [DataMember]
     55    public String Exception { get; set; }
     56    [Storable]
     57    [DataMember]
    5558    public DateTime? DateCreated { get; set; }
    5659    [Storable]
     
    7982    public ProjectDto Project { get; set; }
    8083
     84   
     85
    8186    public override string ToString() {
    8287      return base.ToString() + "State: " + State + ", [Ressource : " + Client + " ] , DateCreated: " + DateCreated + ", DateCalculated: " + DateCalculated +
     
    98103      clone.DateCreated = this.DateCreated;
    99104      clone.DateFinished = this.DateFinished;
     105      clone.Exception = this.Exception;
    100106      clone.Id = this.Id;
    101107      clone.MemoryNeeded = this.MemoryNeeded;
Note: See TracChangeset for help on using the changeset viewer.