From e9d376972ffb6237a55045448271a92026f41198 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 14 Jan 2010 08:05:08 -0800 Subject: Added a UserAccountCache to the UserAccountServiceConnectors. Uses a CenomeCache. --- .../Connectors/UserAccounts/UserAccountServiceConnector.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Services/Connectors/UserAccounts') 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 m_ServerURI = serviceURI; } - public UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName) + public virtual UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName) { Dictionary sendData = new Dictionary(); //sendData["SCOPEID"] = scopeID.ToString(); @@ -97,7 +97,7 @@ namespace OpenSim.Services.Connectors return SendAndGetReply(sendData); } - public UserAccount GetUserAccount(UUID scopeID, string email) + public virtual UserAccount GetUserAccount(UUID scopeID, string email) { Dictionary sendData = new Dictionary(); //sendData["SCOPEID"] = scopeID.ToString(); @@ -110,8 +110,8 @@ namespace OpenSim.Services.Connectors return SendAndGetReply(sendData); } - - public UserAccount GetUserAccount(UUID scopeID, UUID userID) + + public virtual UserAccount GetUserAccount(UUID scopeID, UUID userID) { Dictionary sendData = new Dictionary(); //sendData["SCOPEID"] = scopeID.ToString(); -- cgit v1.1