Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/15/10 15:41:38 (14 years ago)
Author:
gkronber
Message:

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment.DataAccess/PluginDescription.cs

    r2771 r2802  
    88  [DataContract(Name = "PluginDescription")]
    99  public class PluginDescription {
    10 
    11     [DataMember(Name = "Id")]
    12     private long id;
    13     internal long Id {
    14       get {
    15         return id;
    16       }
    17       set {
    18         id = value;
    19       }
    20     }
    2110
    2211    [DataMember(Name = "Name")]
     
    3928    }
    4029
    41     //[DataMember(Name = "IsDatabaseInstance")]
    42     //private bool isDatabaseInstance;
    43     //internal bool IsDatabaseInstance {
    44     //  get {
    45     //    return isDatabaseInstance;
    46     //  }
    47     //}
    48 
    49     internal PluginDescription(long id, string name, Version version, IEnumerable<PluginDescription> dependencies) {
    50       this.id = id;
     30    public PluginDescription(string name, Version version, IEnumerable<PluginDescription> dependencies) {
    5131      this.name = name;
    5232      this.version = version;
    5333      this.dependencies = new List<PluginDescription>(dependencies); //.AsReadOnly();
    54       //this.isDatabaseInstance = true;
    55     }
    56 
    57     public PluginDescription(string name, Version version, IEnumerable<PluginDescription> dependencies)
    58       : this(0, name, version, dependencies) {
    59       //this.isDatabaseInstance = false;
    6034    }
    6135
    6236    public PluginDescription(string name, Version version)
    6337      : this(name, version, Enumerable.Empty<PluginDescription>()) {
    64       //this.isDatabaseInstance = false;
    6538    }
    6639  }
Note: See TracChangeset for help on using the changeset viewer.