Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/10 08:35:43 (14 years ago)
Author:
cneumuel
Message:

added authorizationManager which checks for permission to specific jobs (#1168)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/HiveDataContext.cs

    r4267 r4333  
    19791979    private System.Nullable<System.Guid> _ProjectId;
    19801980   
    1981     private System.Nullable<System.Guid> _UserId;
     1981    private string _UserId;
    19821982   
    19831983    private int _CoresNeeded;
     
    20252025    partial void OnProjectIdChanging(System.Nullable<System.Guid> value);
    20262026    partial void OnProjectIdChanged();
    2027     partial void OnUserIdChanging(System.Nullable<System.Guid> value);
     2027    partial void OnUserIdChanging(string value);
    20282028    partial void OnUserIdChanged();
    20292029    partial void OnCoresNeededChanging(int value);
     
    22962296    }
    22972297   
    2298     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="UniqueIdentifier")]
    2299     public System.Nullable<System.Guid> UserId
     2298    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="VarChar(MAX)")]
     2299    public string UserId
    23002300    {
    23012301      get
Note: See TracChangeset for help on using the changeset viewer.