aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserService
diff options
context:
space:
mode:
authorDiva Canto2009-12-29 13:27:21 -0800
committerDiva Canto2009-12-29 13:27:21 -0800
commit6eb5754f5a4b9707f43572ce1e5743054d784818 (patch)
tree4112cfaa1bd0673752b1c304043e988a3ab3d7c6 /OpenSim/Services/UserService
parentChange the interface a bit before someone depends on it's current form (diff)
downloadopensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.zip
opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.gz
opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.bz2
opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.xz
Polished the IUserService interface.
Diffstat (limited to 'OpenSim/Services/UserService')
-rw-r--r--OpenSim/Services/UserService/UserService.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Services/UserService/UserService.cs b/OpenSim/Services/UserService/UserService.cs
index e8b9fc3..686ae20 100644
--- a/OpenSim/Services/UserService/UserService.cs
+++ b/OpenSim/Services/UserService/UserService.cs
@@ -47,14 +47,14 @@ namespace OpenSim.Services.UserAccountService
47 return null; 47 return null;
48 } 48 }
49 49
50 public UserAccount GetUserAccount(UUID scopeID, UUID userID) 50 public UserAccount GetUserAccount(UUID scopeID, string email)
51 { 51 {
52 return null; 52 return null;
53 } 53 }
54 54
55 public bool SetHomePosition(UserAccount data, UUID regionID, UUID regionSecret) 55 public UserAccount GetUserAccount(UUID scopeID, UUID userID)
56 { 56 {
57 return false; 57 return null;
58 } 58 }
59 59
60 public bool SetUserAccount(UserAccount data, UUID principalID, string token) 60 public bool SetUserAccount(UserAccount data, UUID principalID, string token)
@@ -67,7 +67,7 @@ namespace OpenSim.Services.UserAccountService
67 return false; 67 return false;
68 } 68 }
69 69
70 public List<UserAccount> GetUserAccount(UUID scopeID, 70 public List<UserAccount> GetUserAccounts(UUID scopeID,
71 string query) 71 string query)
72 { 72 {
73 return null; 73 return null;