Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/11 18:04:25 (13 years ago)
Author:
ascheibe
Message:

#1233

  • fixed a bug in the Slave UI
  • finished renaming Webservice and Dao methods to be consistent with Job/Task naming
  • some cosmetic changes and project dependencies cleanups
File:
1 edited

Legend:

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

    r6725 r6743  
    5959
    6060    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
    61 
    62 
    6361  }
    6462
     
    7775
    7876    [System.Runtime.Serialization.OptionalFieldAttribute()]
    79     private System.DateTime LastJobDataUpdateField;
     77    private System.DateTime LastTaskDataUpdateField;
    8078
    8179    [System.Runtime.Serialization.OptionalFieldAttribute()]
     
    115113
    116114    [System.Runtime.Serialization.DataMemberAttribute()]
    117     public System.DateTime LastJobDataUpdate {
    118       get {
    119         return this.LastJobDataUpdateField;
    120       }
    121       set {
    122         if ((this.LastJobDataUpdateField.Equals(value) != true)) {
    123           this.LastJobDataUpdateField = value;
    124           this.RaisePropertyChanged("LastJobDataUpdate");
     115    public System.DateTime LastTaskDataUpdate {
     116      get {
     117        return this.LastTaskDataUpdateField;
     118      }
     119      set {
     120        if ((this.LastTaskDataUpdateField.Equals(value) != true)) {
     121          this.LastTaskDataUpdateField = value;
     122          this.RaisePropertyChanged("LastTaskDataUpdate");
    125123        }
    126124      }
     
    15771575    System.Guid GetResourceId(string resourceName);
    15781576
    1579     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJobsByResourceId", ReplyAction = "http://tempuri.org/IHiveService/GetJobsByResourceIdResponse")]
    1580     System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetJobsByResourceId(System.Guid resourceId);
     1577    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetTasksByResourceId", ReplyAction = "http://tempuri.org/IHiveService/GetTasksByResourceIdResponse")]
     1578    System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetTasksByResourceId(System.Guid resourceId);
    15811579
    15821580    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/TriggerEventManager", ReplyAction = "http://tempuri.org/IHiveService/TriggerEventManagerResponse")]
     
    16011599    System.Guid GetUserIdByUsername(string username);
    16021600
     1601    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddTask", ReplyAction = "http://tempuri.org/IHiveService/AddTaskResponse")]
     1602    System.Guid AddTask(HeuristicLab.Clients.Hive.Task task, HeuristicLab.Clients.Hive.TaskData taskData, System.Collections.Generic.List<System.Guid> resourceIds);
     1603
     1604    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddChildTask", ReplyAction = "http://tempuri.org/IHiveService/AddChildTaskResponse")]
     1605    System.Guid AddChildTask(System.Guid parentTaskId, HeuristicLab.Clients.Hive.Task task, HeuristicLab.Clients.Hive.TaskData taskData);
     1606
     1607    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetTask", ReplyAction = "http://tempuri.org/IHiveService/GetTaskResponse")]
     1608    HeuristicLab.Clients.Hive.Task GetTask(System.Guid taskId);
     1609
     1610    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetTasks", ReplyAction = "http://tempuri.org/IHiveService/GetTasksResponse")]
     1611    System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetTasks();
     1612
     1613    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetLightweightTasks", ReplyAction = "http://tempuri.org/IHiveService/GetLightweightTasksResponse")]
     1614    System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightTasks(System.Collections.Generic.List<System.Guid> taskIds);
     1615
     1616    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetLightweightChildTasks", ReplyAction = "http://tempuri.org/IHiveService/GetLightweightChildTasksResponse")]
     1617    System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightChildTasks(System.Nullable<System.Guid> parentTaskId, bool recursive, bool includeParent);
     1618
     1619    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetLightweightJobTasks", ReplyAction = "http://tempuri.org/IHiveService/GetLightweightJobTasksResponse")]
     1620    System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightJobTasks(System.Guid jobId);
     1621
     1622    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetTaskData", ReplyAction = "http://tempuri.org/IHiveService/GetTaskDataResponse")]
     1623    HeuristicLab.Clients.Hive.TaskData GetTaskData(System.Guid taskId);
     1624
     1625    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateTask", ReplyAction = "http://tempuri.org/IHiveService/UpdateTaskResponse")]
     1626    void UpdateTask(HeuristicLab.Clients.Hive.Task taskDto);
     1627
     1628    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateTaskData", ReplyAction = "http://tempuri.org/IHiveService/UpdateTaskDataResponse")]
     1629    void UpdateTaskData(HeuristicLab.Clients.Hive.Task taskDto, HeuristicLab.Clients.Hive.TaskData taskDataDto);
     1630
     1631    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/DeleteTask", ReplyAction = "http://tempuri.org/IHiveService/DeleteTaskResponse")]
     1632    void DeleteTask(System.Guid taskId);
     1633
     1634    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/DeleteChildTasks", ReplyAction = "http://tempuri.org/IHiveService/DeleteChildTasksResponse")]
     1635    void DeleteChildTasks(System.Guid parentTaskId);
     1636
     1637    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateTaskState", ReplyAction = "http://tempuri.org/IHiveService/UpdateTaskStateResponse")]
     1638    HeuristicLab.Clients.Hive.Task UpdateTaskState(System.Guid taskId, HeuristicLab.Clients.Hive.TaskState taskState, System.Nullable<System.Guid> slaveId, System.Nullable<System.Guid> userId, string exception);
     1639
     1640    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/StopTask", ReplyAction = "http://tempuri.org/IHiveService/StopTaskResponse")]
     1641    void StopTask(System.Guid taskId);
     1642
     1643    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/PauseTask", ReplyAction = "http://tempuri.org/IHiveService/PauseTaskResponse")]
     1644    void PauseTask(System.Guid taskId);
     1645
     1646    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/RestartTask", ReplyAction = "http://tempuri.org/IHiveService/RestartTaskResponse")]
     1647    void RestartTask(System.Guid taskId);
     1648
     1649    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJob", ReplyAction = "http://tempuri.org/IHiveService/GetJobResponse")]
     1650    HeuristicLab.Clients.Hive.Job GetJob(System.Guid id);
     1651
     1652    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJobs", ReplyAction = "http://tempuri.org/IHiveService/GetJobsResponse")]
     1653    System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetJobs();
     1654
     1655    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetAllJobs", ReplyAction = "http://tempuri.org/IHiveService/GetAllJobsResponse")]
     1656    System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetAllJobs();
     1657
    16031658    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddJob", ReplyAction = "http://tempuri.org/IHiveService/AddJobResponse")]
    1604     System.Guid AddJob(HeuristicLab.Clients.Hive.Task job, HeuristicLab.Clients.Hive.TaskData jobData, System.Collections.Generic.List<System.Guid> resourceIds);
    1605 
    1606     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddChildJob", ReplyAction = "http://tempuri.org/IHiveService/AddChildJobResponse")]
    1607     System.Guid AddChildJob(System.Guid parentJobId, HeuristicLab.Clients.Hive.Task job, HeuristicLab.Clients.Hive.TaskData jobData);
    1608 
    1609     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJob", ReplyAction = "http://tempuri.org/IHiveService/GetJobResponse")]
    1610     HeuristicLab.Clients.Hive.Task GetJob(System.Guid jobId);
    1611 
    1612     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJobs", ReplyAction = "http://tempuri.org/IHiveService/GetJobsResponse")]
    1613     System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetJobs();
    1614 
    1615     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetLightweightJobs", ReplyAction = "http://tempuri.org/IHiveService/GetLightweightJobsResponse")]
    1616     System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightJobs(System.Collections.Generic.List<System.Guid> jobIds);
    1617 
    1618     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetLightweightChildJobs", ReplyAction = "http://tempuri.org/IHiveService/GetLightweightChildJobsResponse")]
    1619     System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightChildJobs(System.Nullable<System.Guid> parentJobId, bool recursive, bool includeParent);
    1620 
    1621     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetLightweightExperimentJobs", ReplyAction = "http://tempuri.org/IHiveService/GetLightweightExperimentJobsResponse")]
    1622     System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightExperimentJobs(System.Guid experimentId);
    1623 
    1624     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJobData", ReplyAction = "http://tempuri.org/IHiveService/GetJobDataResponse")]
    1625     HeuristicLab.Clients.Hive.TaskData GetJobData(System.Guid jobId);
     1659    System.Guid AddJob(HeuristicLab.Clients.Hive.Job jobDto);
    16261660
    16271661    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateJob", ReplyAction = "http://tempuri.org/IHiveService/UpdateJobResponse")]
    1628     void UpdateJob(HeuristicLab.Clients.Hive.Task jobDto);
    1629 
    1630     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateJobData", ReplyAction = "http://tempuri.org/IHiveService/UpdateJobDataResponse")]
    1631     void UpdateJobData(HeuristicLab.Clients.Hive.Task jobDto, HeuristicLab.Clients.Hive.TaskData jobDataDto);
     1662    void UpdateJob(HeuristicLab.Clients.Hive.Job jobDto);
    16321663
    16331664    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/DeleteJob", ReplyAction = "http://tempuri.org/IHiveService/DeleteJobResponse")]
    1634     void DeleteJob(System.Guid jobId);
    1635 
    1636     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/DeleteChildJobs", ReplyAction = "http://tempuri.org/IHiveService/DeleteChildJobsResponse")]
    1637     void DeleteChildJobs(System.Guid parentJobId);
    1638 
    1639     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateJobState", ReplyAction = "http://tempuri.org/IHiveService/UpdateJobStateResponse")]
    1640     HeuristicLab.Clients.Hive.Task UpdateJobState(System.Guid jobId, HeuristicLab.Clients.Hive.TaskState jobState, System.Nullable<System.Guid> slaveId, System.Nullable<System.Guid> userId, string exception);
    1641 
    1642     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/StopJob", ReplyAction = "http://tempuri.org/IHiveService/StopJobResponse")]
    1643     void StopJob(System.Guid jobId);
    1644 
    1645     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/PauseJob", ReplyAction = "http://tempuri.org/IHiveService/PauseJobResponse")]
    1646     void PauseJob(System.Guid jobId);
    1647 
    1648     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/RestartJob", ReplyAction = "http://tempuri.org/IHiveService/RestartJobResponse")]
    1649     void RestartJob(System.Guid jobId);
    1650 
    1651     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetHiveExperiment", ReplyAction = "http://tempuri.org/IHiveService/GetHiveExperimentResponse")]
    1652     HeuristicLab.Clients.Hive.Job GetHiveExperiment(System.Guid id);
    1653 
    1654     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetHiveExperiments", ReplyAction = "http://tempuri.org/IHiveService/GetHiveExperimentsResponse")]
    1655     System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetHiveExperiments();
    1656 
    1657     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetAllHiveExperiments", ReplyAction = "http://tempuri.org/IHiveService/GetAllHiveExperimentsResponse")]
    1658     System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetAllHiveExperiments();
    1659 
    1660     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/AddHiveExperiment", ReplyAction = "http://tempuri.org/IHiveService/AddHiveExperimentResponse")]
    1661     System.Guid AddHiveExperiment(HeuristicLab.Clients.Hive.Job hiveExperimentDto);
    1662 
    1663     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/UpdateHiveExperiment", ReplyAction = "http://tempuri.org/IHiveService/UpdateHiveExperimentResponse")]
    1664     void UpdateHiveExperiment(HeuristicLab.Clients.Hive.Job hiveExperimentDto);
    1665 
    1666     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/DeleteHiveExperiment", ReplyAction = "http://tempuri.org/IHiveService/DeleteHiveExperimentResponse")]
    1667     void DeleteHiveExperiment(System.Guid hiveExperimentId);
     1665    void DeleteJob(System.Guid JobId);
    16681666
    16691667    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GrantPermission", ReplyAction = "http://tempuri.org/IHiveService/GrantPermissionResponse")]
    1670     void GrantPermission(System.Guid hiveExperimentId, System.Guid grantedUserId, HeuristicLab.Clients.Hive.Permission permission);
     1668    void GrantPermission(System.Guid jobId, System.Guid grantedUserId, HeuristicLab.Clients.Hive.Permission permission);
    16711669
    16721670    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/RevokePermission", ReplyAction = "http://tempuri.org/IHiveService/RevokePermissionResponse")]
    16731671    void RevokePermission(System.Guid hiveExperimentId, System.Guid grantedUserId);
    16741672
    1675     [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetHiveExperimentPermissions", ReplyAction = "http://tempuri.org/IHiveService/GetHiveExperimentPermissionsResponse")]
    1676     System.Collections.Generic.List<HeuristicLab.Clients.Hive.JobPermission> GetHiveExperimentPermissions(System.Guid hiveExperimentId);
     1673    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/GetJobPermissions", ReplyAction = "http://tempuri.org/IHiveService/GetJobPermissionsResponse")]
     1674    System.Collections.Generic.List<HeuristicLab.Clients.Hive.JobPermission> GetJobPermissions(System.Guid jobId);
    16771675
    16781676    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IHiveService/IsAllowedPrivileged", ReplyAction = "http://tempuri.org/IHiveService/IsAllowedPrivilegedResponse")]
     
    17801778    }
    17811779
    1782     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetJobsByResourceId(System.Guid resourceId) {
    1783       return base.Channel.GetJobsByResourceId(resourceId);
     1780    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetTasksByResourceId(System.Guid resourceId) {
     1781      return base.Channel.GetTasksByResourceId(resourceId);
    17841782    }
    17851783
     
    18121810    }
    18131811
    1814     public System.Guid AddJob(HeuristicLab.Clients.Hive.Task job, HeuristicLab.Clients.Hive.TaskData jobData, System.Collections.Generic.List<System.Guid> resourceIds) {
    1815       return base.Channel.AddJob(job, jobData, resourceIds);
    1816     }
    1817 
    1818     public System.Guid AddChildJob(System.Guid parentJobId, HeuristicLab.Clients.Hive.Task job, HeuristicLab.Clients.Hive.TaskData jobData) {
    1819       return base.Channel.AddChildJob(parentJobId, job, jobData);
    1820     }
    1821 
    1822     public HeuristicLab.Clients.Hive.Task GetJob(System.Guid jobId) {
    1823       return base.Channel.GetJob(jobId);
    1824     }
    1825 
    1826     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetJobs() {
     1812    public System.Guid AddTask(HeuristicLab.Clients.Hive.Task task, HeuristicLab.Clients.Hive.TaskData taskData, System.Collections.Generic.List<System.Guid> resourceIds) {
     1813      return base.Channel.AddTask(task, taskData, resourceIds);
     1814    }
     1815
     1816    public System.Guid AddChildTask(System.Guid parentTaskId, HeuristicLab.Clients.Hive.Task task, HeuristicLab.Clients.Hive.TaskData taskData) {
     1817      return base.Channel.AddChildTask(parentTaskId, task, taskData);
     1818    }
     1819
     1820    public HeuristicLab.Clients.Hive.Task GetTask(System.Guid taskId) {
     1821      return base.Channel.GetTask(taskId);
     1822    }
     1823
     1824    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Task> GetTasks() {
     1825      return base.Channel.GetTasks();
     1826    }
     1827
     1828    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightTasks(System.Collections.Generic.List<System.Guid> taskIds) {
     1829      return base.Channel.GetLightweightTasks(taskIds);
     1830    }
     1831
     1832    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightChildTasks(System.Nullable<System.Guid> parentTaskId, bool recursive, bool includeParent) {
     1833      return base.Channel.GetLightweightChildTasks(parentTaskId, recursive, includeParent);
     1834    }
     1835
     1836    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightJobTasks(System.Guid jobId) {
     1837      return base.Channel.GetLightweightJobTasks(jobId);
     1838    }
     1839
     1840    public HeuristicLab.Clients.Hive.TaskData GetTaskData(System.Guid taskId) {
     1841      return base.Channel.GetTaskData(taskId);
     1842    }
     1843
     1844    public void UpdateTask(HeuristicLab.Clients.Hive.Task taskDto) {
     1845      base.Channel.UpdateTask(taskDto);
     1846    }
     1847
     1848    public void UpdateTaskData(HeuristicLab.Clients.Hive.Task taskDto, HeuristicLab.Clients.Hive.TaskData taskDataDto) {
     1849      base.Channel.UpdateTaskData(taskDto, taskDataDto);
     1850    }
     1851
     1852    public void DeleteTask(System.Guid taskId) {
     1853      base.Channel.DeleteTask(taskId);
     1854    }
     1855
     1856    public void DeleteChildTasks(System.Guid parentTaskId) {
     1857      base.Channel.DeleteChildTasks(parentTaskId);
     1858    }
     1859
     1860    public HeuristicLab.Clients.Hive.Task UpdateTaskState(System.Guid taskId, HeuristicLab.Clients.Hive.TaskState taskState, System.Nullable<System.Guid> slaveId, System.Nullable<System.Guid> userId, string exception) {
     1861      return base.Channel.UpdateTaskState(taskId, taskState, slaveId, userId, exception);
     1862    }
     1863
     1864    public void StopTask(System.Guid taskId) {
     1865      base.Channel.StopTask(taskId);
     1866    }
     1867
     1868    public void PauseTask(System.Guid taskId) {
     1869      base.Channel.PauseTask(taskId);
     1870    }
     1871
     1872    public void RestartTask(System.Guid taskId) {
     1873      base.Channel.RestartTask(taskId);
     1874    }
     1875
     1876    public HeuristicLab.Clients.Hive.Job GetJob(System.Guid id) {
     1877      return base.Channel.GetJob(id);
     1878    }
     1879
     1880    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetJobs() {
    18271881      return base.Channel.GetJobs();
    18281882    }
    18291883
    1830     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightJobs(System.Collections.Generic.List<System.Guid> jobIds) {
    1831       return base.Channel.GetLightweightJobs(jobIds);
    1832     }
    1833 
    1834     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightChildJobs(System.Nullable<System.Guid> parentJobId, bool recursive, bool includeParent) {
    1835       return base.Channel.GetLightweightChildJobs(parentJobId, recursive, includeParent);
    1836     }
    1837 
    1838     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.LightweightTask> GetLightweightExperimentJobs(System.Guid experimentId) {
    1839       return base.Channel.GetLightweightExperimentJobs(experimentId);
    1840     }
    1841 
    1842     public HeuristicLab.Clients.Hive.TaskData GetJobData(System.Guid jobId) {
    1843       return base.Channel.GetJobData(jobId);
    1844     }
    1845 
    1846     public void UpdateJob(HeuristicLab.Clients.Hive.Task jobDto) {
     1884    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetAllJobs() {
     1885      return base.Channel.GetAllJobs();
     1886    }
     1887
     1888    public System.Guid AddJob(HeuristicLab.Clients.Hive.Job jobDto) {
     1889      return base.Channel.AddJob(jobDto);
     1890    }
     1891
     1892    public void UpdateJob(HeuristicLab.Clients.Hive.Job jobDto) {
    18471893      base.Channel.UpdateJob(jobDto);
    18481894    }
    18491895
    1850     public void UpdateJobData(HeuristicLab.Clients.Hive.Task jobDto, HeuristicLab.Clients.Hive.TaskData jobDataDto) {
    1851       base.Channel.UpdateJobData(jobDto, jobDataDto);
    1852     }
    1853 
    1854     public void DeleteJob(System.Guid jobId) {
    1855       base.Channel.DeleteJob(jobId);
    1856     }
    1857 
    1858     public void DeleteChildJobs(System.Guid parentJobId) {
    1859       base.Channel.DeleteChildJobs(parentJobId);
    1860     }
    1861 
    1862     public HeuristicLab.Clients.Hive.Task UpdateJobState(System.Guid jobId, HeuristicLab.Clients.Hive.TaskState jobState, System.Nullable<System.Guid> slaveId, System.Nullable<System.Guid> userId, string exception) {
    1863       return base.Channel.UpdateJobState(jobId, jobState, slaveId, userId, exception);
    1864     }
    1865 
    1866     public void StopJob(System.Guid jobId) {
    1867       base.Channel.StopJob(jobId);
    1868     }
    1869 
    1870     public void PauseJob(System.Guid jobId) {
    1871       base.Channel.PauseJob(jobId);
    1872     }
    1873 
    1874     public void RestartJob(System.Guid jobId) {
    1875       base.Channel.RestartJob(jobId);
    1876     }
    1877 
    1878     public HeuristicLab.Clients.Hive.Job GetHiveExperiment(System.Guid id) {
    1879       return base.Channel.GetHiveExperiment(id);
    1880     }
    1881 
    1882     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetHiveExperiments() {
    1883       return base.Channel.GetHiveExperiments();
    1884     }
    1885 
    1886     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.Job> GetAllHiveExperiments() {
    1887       return base.Channel.GetAllHiveExperiments();
    1888     }
    1889 
    1890     public System.Guid AddHiveExperiment(HeuristicLab.Clients.Hive.Job hiveExperimentDto) {
    1891       return base.Channel.AddHiveExperiment(hiveExperimentDto);
    1892     }
    1893 
    1894     public void UpdateHiveExperiment(HeuristicLab.Clients.Hive.Job hiveExperimentDto) {
    1895       base.Channel.UpdateHiveExperiment(hiveExperimentDto);
    1896     }
    1897 
    1898     public void DeleteHiveExperiment(System.Guid hiveExperimentId) {
    1899       base.Channel.DeleteHiveExperiment(hiveExperimentId);
    1900     }
    1901 
    1902     public void GrantPermission(System.Guid hiveExperimentId, System.Guid grantedUserId, HeuristicLab.Clients.Hive.Permission permission) {
    1903       base.Channel.GrantPermission(hiveExperimentId, grantedUserId, permission);
     1896    public void DeleteJob(System.Guid JobId) {
     1897      base.Channel.DeleteJob(JobId);
     1898    }
     1899
     1900    public void GrantPermission(System.Guid jobId, System.Guid grantedUserId, HeuristicLab.Clients.Hive.Permission permission) {
     1901      base.Channel.GrantPermission(jobId, grantedUserId, permission);
    19041902    }
    19051903
     
    19081906    }
    19091907
    1910     public System.Collections.Generic.List<HeuristicLab.Clients.Hive.JobPermission> GetHiveExperimentPermissions(System.Guid hiveExperimentId) {
    1911       return base.Channel.GetHiveExperimentPermissions(hiveExperimentId);
     1908    public System.Collections.Generic.List<HeuristicLab.Clients.Hive.JobPermission> GetJobPermissions(System.Guid jobId) {
     1909      return base.Channel.GetJobPermissions(jobId);
    19121910    }
    19131911
Note: See TracChangeset for help on using the changeset viewer.