1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System.ServiceModel;
|
---|
23 |
|
---|
24 | namespace HeuristicLab.Services.UserManagement {
|
---|
25 | [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
|
---|
26 | public class UserManagementService : IUserManagementService {
|
---|
27 |
|
---|
28 | #region IUserManagementService Members
|
---|
29 |
|
---|
30 | public System.Collections.Generic.IEnumerable<DataTransfer.User> GetUsers(DataTransfer.Application application) {
|
---|
31 | throw new System.NotImplementedException();
|
---|
32 | }
|
---|
33 |
|
---|
34 | public DataTransfer.User AddUser(DataTransfer.User user) {
|
---|
35 | throw new System.NotImplementedException();
|
---|
36 | }
|
---|
37 |
|
---|
38 | public void DeleteUser(DataTransfer.User user) {
|
---|
39 | throw new System.NotImplementedException();
|
---|
40 | }
|
---|
41 |
|
---|
42 | public void UpdateUser(DataTransfer.User user) {
|
---|
43 | throw new System.NotImplementedException();
|
---|
44 | }
|
---|
45 |
|
---|
46 | public void AddUserToRole(DataTransfer.Role role, DataTransfer.User user) {
|
---|
47 | throw new System.NotImplementedException();
|
---|
48 | }
|
---|
49 |
|
---|
50 | public void RemoveUserFromRole(DataTransfer.Role role, DataTransfer.User user) {
|
---|
51 | throw new System.NotImplementedException();
|
---|
52 | }
|
---|
53 |
|
---|
54 | public bool IsUserInRole(DataTransfer.User user, DataTransfer.Role role) {
|
---|
55 | throw new System.NotImplementedException();
|
---|
56 | }
|
---|
57 |
|
---|
58 | public DataTransfer.User ResetPassword(string applicationName, string userName, string password) {
|
---|
59 | throw new System.NotImplementedException();
|
---|
60 | }
|
---|
61 |
|
---|
62 | public System.Collections.Generic.IEnumerable<DataTransfer.Role> GetRoles(DataTransfer.Application application) {
|
---|
63 | throw new System.NotImplementedException();
|
---|
64 | }
|
---|
65 |
|
---|
66 | public DataTransfer.Role AddRole(DataTransfer.Role role) {
|
---|
67 | throw new System.NotImplementedException();
|
---|
68 | }
|
---|
69 |
|
---|
70 | public void UpdateRole(DataTransfer.Role role) {
|
---|
71 | throw new System.NotImplementedException();
|
---|
72 | }
|
---|
73 |
|
---|
74 | public void DeleteRole(DataTransfer.Role role) {
|
---|
75 | throw new System.NotImplementedException();
|
---|
76 | }
|
---|
77 |
|
---|
78 | public System.Collections.Generic.IEnumerable<DataTransfer.Role> GetUserRoles(DataTransfer.User user) {
|
---|
79 | throw new System.NotImplementedException();
|
---|
80 | }
|
---|
81 |
|
---|
82 | public System.Collections.Generic.IEnumerable<DataTransfer.Application> GetApplications() {
|
---|
83 | throw new System.NotImplementedException();
|
---|
84 | }
|
---|
85 |
|
---|
86 | public System.Collections.Generic.IEnumerable<DataTransfer.User> GetApplicationUsers(DataTransfer.Application application) {
|
---|
87 | throw new System.NotImplementedException();
|
---|
88 | }
|
---|
89 |
|
---|
90 | public DataTransfer.Application AddApplication(DataTransfer.Application application) {
|
---|
91 | throw new System.NotImplementedException();
|
---|
92 | }
|
---|
93 |
|
---|
94 | public void UpdateApplication(DataTransfer.Application application) {
|
---|
95 | throw new System.NotImplementedException();
|
---|
96 | }
|
---|
97 |
|
---|
98 | public void DeleteApplication(DataTransfer.Application application) {
|
---|
99 | throw new System.NotImplementedException();
|
---|
100 | }
|
---|
101 |
|
---|
102 | public bool CheckUserExists(string application, string userName, string password) {
|
---|
103 | throw new System.NotImplementedException();
|
---|
104 | }
|
---|
105 |
|
---|
106 | public bool GetUser(string application, string userName, string password) {
|
---|
107 | throw new System.NotImplementedException();
|
---|
108 | }
|
---|
109 |
|
---|
110 | #endregion
|
---|
111 | }
|
---|
112 | }
|
---|