- Timestamp:
- 09/01/15 14:10:37 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/HiveServiceClient.cs
r9219 r12926 351 351 352 352 [System.Runtime.Serialization.OptionalFieldAttribute()] 353 private bool IsPrivilegedField;354 355 [System.Runtime.Serialization.OptionalFieldAttribute()]356 353 private System.Guid JobIdField; 357 354 … … 415 412 this.IsParentTaskField = value; 416 413 this.RaisePropertyChanged("IsParentTask"); 417 }418 }419 }420 421 [System.Runtime.Serialization.DataMemberAttribute()]422 public bool IsPrivileged423 {424 get425 {426 return this.IsPrivilegedField;427 }428 set429 {430 if ((this.IsPrivilegedField.Equals(value) != true))431 {432 this.IsPrivilegedField = value;433 this.RaisePropertyChanged("IsPrivileged");434 414 } 435 415 } … … 2553 2533 System.Collections.Generic.List<HeuristicLab.Clients.Hive.JobPermission> GetJobPermissions(System.Guid jobId); 2554 2534 2555 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IHiveService/IsAllowedPrivileged", ReplyAction="http://tempuri.org/IHiveService/IsAllowedPrivilegedResponse")]2556 bool IsAllowedPrivileged();2557 2558 2535 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IHiveService/Hello", ReplyAction="http://tempuri.org/IHiveService/HelloResponse")] 2559 2536 void Hello(HeuristicLab.Clients.Hive.Slave slave); … … 2882 2859 } 2883 2860 2884 public bool IsAllowedPrivileged()2885 {2886 return base.Channel.IsAllowedPrivileged();2887 }2888 2889 2861 public void Hello(HeuristicLab.Clients.Hive.Slave slave) 2890 2862 { -
trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/Job.cs
r12012 r12926 27 27 public partial class Job : IDeepCloneable, IContent { 28 28 29 private bool isPrivileged;30 public bool IsPrivileged {31 get { return isPrivileged; }32 set { isPrivileged = value; }33 }34 35 29 #region Constructors and Cloning 36 30 public Job() { … … 48 42 this.Description = original.Description; 49 43 this.Id = original.Id; 50 this.IsPrivileged = original.IsPrivileged;51 44 this.Permission = original.Permission; 52 45 } -
trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/Task.cs
r12012 r12926 43 43 this.FinishWhenChildJobsFinished = original.FinishWhenChildJobsFinished; 44 44 this.JobId = original.JobId; 45 this.IsPrivileged = original.IsPrivileged;46 45 } 47 46
Note: See TracChangeset
for help on using the changeset viewer.