Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/08 14:27:43 (16 years ago)
Author:
msteinbi
Message:

Implementation of Client Manager (#427)

Location:
trunk/sources/HeuristicLab.Hive.Contracts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/ApplicationConstants.cs

    r940 r942  
    2323    public static string RESPONSE_CLIENT_GET_ALL_CLIENTS = "Client.GetAllClients";
    2424    public static string RESPONSE_CLIENT_GET_ALL_CLIENTGROUPS = "Client.GetAllClientGroups";
     25    public static string RESPONSE_CLIENT_ID_MUST_NOT_BE_SET = "Client.IdMustNotBeSet";
     26    public static string RESPONSE_CLIENT_CLIENTGROUP_ADDED = "Client.ClientGroupAdded";
     27    public static string RESPONSE_CLIENT_CLIENTGROUP_DOESNT_EXIST = "Client.ClientGroupDoesntExist";
     28    public static string RESPONSE_CLIENT_RESOURCE_ADDED_TO_GROUP = "Client.ResourceAddedToGroup";
     29    public static string RESPONSE_CLIENT_RESOURCE_REMOVED = "Client.ResourceRemoved";
     30    public static string RESPONSE_CLIENT_RESOURCE_NOT_FOUND = "Client.ResourceNotFound";
    2531
    2632    public static string RESPONSE_COMMUNICATOR_HARDBEAT_RECEIVED = "Communicator.HeardbeatReceived";
  • trunk/sources/HeuristicLab.Hive.Contracts/HiveServerMessages.resx

    r937 r942  
    178178    <value>User successfully added to database</value>
    179179  </data>
     180  <data name="Client.ClientGroupAdded" xml:space="preserve">
     181    <value>ClientGroup successfully added</value>
     182  </data>
     183  <data name="Client.ClientGroupDoesntExist" xml:space="preserve">
     184    <value>The specified ClientGroup doesn't exist</value>
     185  </data>
     186  <data name="Client.IdMustNotBeSet" xml:space="preserve">
     187    <value>In this context the id must not be set</value>
     188  </data>
     189  <data name="Client.ResourceAddedToGroup" xml:space="preserve">
     190    <value>Resource successfully added to ClientGroup</value>
     191  </data>
     192  <data name="Client.ResourceRemoved" xml:space="preserve">
     193    <value>Resource successfully removed from ClientGroup</value>
     194  </data>
    180195  <data name="UserRole.IdMustNotBeSet" xml:space="preserve">
    181196    <value>In this context the id must not be set</value>
Note: See TracChangeset for help on using the changeset viewer.