Polished the IUserService interface.
parent
8631cea215
commit
6eb5754f5a
|
@ -168,6 +168,11 @@ namespace OpenSim.Data.MSSQL
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public bool SetDataItem(UUID principalID, string item, string value)
|
public bool SetDataItem(UUID principalID, string item, string value)
|
||||||
{
|
{
|
||||||
string sql = string.Format("update {0} set {1} = @{1} where UUID = @UUID", m_Realm, item);
|
string sql = string.Format("update {0} set {1} = @{1} where UUID = @UUID", m_Realm, item);
|
||||||
|
|
|
@ -40,10 +40,10 @@ namespace OpenSim.Data.MySQL
|
||||||
public MySqlUserAccountData(string connectionString, string realm)
|
public MySqlUserAccountData(string connectionString, string realm)
|
||||||
: base(connectionString, realm, "UserAccount")
|
: base(connectionString, realm, "UserAccount")
|
||||||
{
|
{
|
||||||
|
}
|
||||||
public bool Store(UserAccountData data, UUID principalID, string token)
|
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||||
{
|
{
|
||||||
Store(data);
|
return Store(data);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,14 +86,14 @@ namespace OpenSim.Services.Connectors
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public UserAccount GetUserAccount(UUID scopeID, UUID userID)
|
public UserAccount GetUserAccount(UUID scopeID, string email)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SetHomePosition(UserAccount data, UUID regionID, UUID regionSecret)
|
public UserAccount GetUserAccount(UUID scopeID, UUID userID)
|
||||||
{
|
{
|
||||||
return false;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
||||||
|
@ -106,7 +106,7 @@ namespace OpenSim.Services.Connectors
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<UserAccount> GetUserAccount(UUID scopeID, string query)
|
public List<UserAccount> GetUserAccounts(UUID scopeID, string query)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,10 +89,11 @@ namespace OpenSim.Services.Interfaces
|
||||||
{
|
{
|
||||||
UserAccount GetUserAccount(UUID scopeID, UUID userID);
|
UserAccount GetUserAccount(UUID scopeID, UUID userID);
|
||||||
UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName);
|
UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName);
|
||||||
|
UserAccount GetUserAccount(UUID scopeID, string Email);
|
||||||
// Returns the list of avatars that matches both the search
|
// Returns the list of avatars that matches both the search
|
||||||
// criterion and the scope ID passed
|
// criterion and the scope ID passed
|
||||||
//
|
//
|
||||||
List<UserAccount> GetUserAccount(UUID scopeID, string query);
|
List<UserAccount> GetUserAccounts(UUID scopeID, string query);
|
||||||
|
|
||||||
// Update all updatable fields
|
// Update all updatable fields
|
||||||
//
|
//
|
||||||
|
|
|
@ -47,14 +47,14 @@ namespace OpenSim.Services.UserAccountService
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public UserAccount GetUserAccount(UUID scopeID, UUID userID)
|
public UserAccount GetUserAccount(UUID scopeID, string email)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SetHomePosition(UserAccount data, UUID regionID, UUID regionSecret)
|
public UserAccount GetUserAccount(UUID scopeID, UUID userID)
|
||||||
{
|
{
|
||||||
return false;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
public bool SetUserAccount(UserAccount data, UUID principalID, string token)
|
||||||
|
@ -67,7 +67,7 @@ namespace OpenSim.Services.UserAccountService
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<UserAccount> GetUserAccount(UUID scopeID,
|
public List<UserAccount> GetUserAccounts(UUID scopeID,
|
||||||
string query)
|
string query)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue