diff options
author | Diva Canto | 2010-01-14 08:05:08 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-14 08:05:08 -0800 |
commit | e9d376972ffb6237a55045448271a92026f41198 (patch) | |
tree | 1d1acf1a112a0f5e6928763fd422477f8142753a /OpenSim/Services/Connectors/UserAccounts | |
parent | Added the 2 missing methods in the grid service remote connections. (diff) | |
download | opensim-SC_OLD-e9d376972ffb6237a55045448271a92026f41198.zip opensim-SC_OLD-e9d376972ffb6237a55045448271a92026f41198.tar.gz opensim-SC_OLD-e9d376972ffb6237a55045448271a92026f41198.tar.bz2 opensim-SC_OLD-e9d376972ffb6237a55045448271a92026f41198.tar.xz |
Added a UserAccountCache to the UserAccountServiceConnectors. Uses a CenomeCache.
Diffstat (limited to 'OpenSim/Services/Connectors/UserAccounts')
-rw-r--r-- | OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs index 076993e..e1621b8 100644 --- a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs +++ b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | |||
@@ -82,7 +82,7 @@ namespace OpenSim.Services.Connectors | |||
82 | m_ServerURI = serviceURI; | 82 | m_ServerURI = serviceURI; |
83 | } | 83 | } |
84 | 84 | ||
85 | public UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName) | 85 | public virtual UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName) |
86 | { | 86 | { |
87 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 87 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
88 | //sendData["SCOPEID"] = scopeID.ToString(); | 88 | //sendData["SCOPEID"] = scopeID.ToString(); |
@@ -97,7 +97,7 @@ namespace OpenSim.Services.Connectors | |||
97 | return SendAndGetReply(sendData); | 97 | return SendAndGetReply(sendData); |
98 | } | 98 | } |
99 | 99 | ||
100 | public UserAccount GetUserAccount(UUID scopeID, string email) | 100 | public virtual UserAccount GetUserAccount(UUID scopeID, string email) |
101 | { | 101 | { |
102 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 102 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
103 | //sendData["SCOPEID"] = scopeID.ToString(); | 103 | //sendData["SCOPEID"] = scopeID.ToString(); |
@@ -110,8 +110,8 @@ namespace OpenSim.Services.Connectors | |||
110 | 110 | ||
111 | return SendAndGetReply(sendData); | 111 | return SendAndGetReply(sendData); |
112 | } | 112 | } |
113 | 113 | ||
114 | public UserAccount GetUserAccount(UUID scopeID, UUID userID) | 114 | public virtual UserAccount GetUserAccount(UUID scopeID, UUID userID) |
115 | { | 115 | { |
116 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 116 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
117 | //sendData["SCOPEID"] = scopeID.ToString(); | 117 | //sendData["SCOPEID"] = scopeID.ToString(); |