2008-09-24 15:04:35 +00:00
|
|
|
using System;
|
|
|
|
|
using OpenMetaverse;
|
|
|
|
|
|
|
|
|
|
namespace Simian
|
|
|
|
|
{
|
|
|
|
|
public interface IAccountProvider
|
|
|
|
|
{
|
2009-03-12 23:02:42 +00:00
|
|
|
void AddAccount(AgentInfo agent);
|
2008-09-24 15:04:35 +00:00
|
|
|
bool RemoveAccount(UUID agentID);
|
2009-03-12 23:02:42 +00:00
|
|
|
AgentInfo CreateInstance(UUID agentID);
|
|
|
|
|
bool TryGetAccount(UUID agentID, out AgentInfo agent);
|
|
|
|
|
bool TryGetAccount(string fullName, out AgentInfo agent);
|
2008-09-24 15:04:35 +00:00
|
|
|
}
|
|
|
|
|
}
|