Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/01/15 14:10:37 (9 years ago)
Author:
jkarder
Message:

#2355:

  • changed sandboxing to always use an unrestricted permission set
  • removed IsAllowedPrivileged role and according IsPrivileged code
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r12878 r12926  
    16201620    private System.Guid _HiveExperimentId;
    16211621   
    1622     private bool _IsPrivileged;
    1623    
    16241622    private EntitySet<AssignedResource> _AssignedResources;
    16251623   
     
    16641662    partial void OnJobIdChanging(System.Guid value);
    16651663    partial void OnJobIdChanged();
    1666     partial void OnIsPrivilegedChanging(bool value);
    1667     partial void OnIsPrivilegedChanged();
    16681664    #endregion
    16691665   
     
    19241920          this.SendPropertyChanged("JobId");
    19251921          this.OnJobIdChanged();
    1926         }
    1927       }
    1928     }
    1929    
    1930     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsPrivileged", DbType="Bit")]
    1931     public bool IsPrivileged
    1932     {
    1933       get
    1934       {
    1935         return this._IsPrivileged;
    1936       }
    1937       set
    1938       {
    1939         if ((this._IsPrivileged != value))
    1940         {
    1941           this.OnIsPrivilegedChanging(value);
    1942           this.SendPropertyChanging();
    1943           this._IsPrivileged = value;
    1944           this.SendPropertyChanged("IsPrivileged");
    1945           this.OnIsPrivilegedChanged();
    19461922        }
    19471923      }
Note: See TracChangeset for help on using the changeset viewer.