* So, ok, maybe a bit harsh to explode on grid inventory calls.
parent
ee5f069e2a
commit
00ddeebf57
|
@ -58,12 +58,10 @@ namespace OpenSim.Region.Communications.Local
|
|||
|
||||
LocalInventoryService inventoryService = new LocalInventoryService();
|
||||
inventoryService.AddPlugin(m_settings.InventoryPlugin);
|
||||
|
||||
m_inventoryService = inventoryService;
|
||||
|
||||
LocalUserServices userService = new LocalUserServices(this, serversInfo);
|
||||
userService.AddPlugin(m_settings.UserDatabasePlugin);
|
||||
|
||||
m_userService = userService;
|
||||
|
||||
InstanceServices = new LocalBackEndServices();
|
||||
|
|
|
@ -16,35 +16,35 @@ namespace OpenSim.Region.Communications.OGS1
|
|||
}
|
||||
|
||||
#region IInventoryServices Members
|
||||
|
||||
|
||||
public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
|
||||
}
|
||||
|
||||
public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
|
||||
}
|
||||
|
||||
public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
|
||||
}
|
||||
|
||||
public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
|
||||
}
|
||||
|
||||
public void CreateNewUserInventory(LLUUID user)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
|
||||
}
|
||||
|
||||
public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
return new List<InventoryFolderBase>();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
Loading…
Reference in New Issue