First pass at the grid service.

This commit is contained in:
Diva Canto
2009-09-18 19:16:30 -07:00
parent df7904c58b
commit e736273815
6 changed files with 425 additions and 86 deletions

View File

@@ -45,7 +45,7 @@ namespace OpenSim.Data
/// <summary>
/// An interface for connecting to the authentication datastore
/// </summary>
public interface IRegionData
public interface IRegionData
{
RegionData Get(UUID regionID, UUID ScopeID);
List<RegionData> Get(string regionName, UUID ScopeID);
@@ -57,5 +57,6 @@ namespace OpenSim.Data
bool SetDataItem(UUID principalID, string item, string value);
bool Delete(UUID regionID);
}
}