* 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();
|
LocalInventoryService inventoryService = new LocalInventoryService();
|
||||||
inventoryService.AddPlugin(m_settings.InventoryPlugin);
|
inventoryService.AddPlugin(m_settings.InventoryPlugin);
|
||||||
|
|
||||||
m_inventoryService = inventoryService;
|
m_inventoryService = inventoryService;
|
||||||
|
|
||||||
LocalUserServices userService = new LocalUserServices(this, serversInfo);
|
LocalUserServices userService = new LocalUserServices(this, serversInfo);
|
||||||
userService.AddPlugin(m_settings.UserDatabasePlugin);
|
userService.AddPlugin(m_settings.UserDatabasePlugin);
|
||||||
|
|
||||||
m_userService = userService;
|
m_userService = userService;
|
||||||
|
|
||||||
InstanceServices = new LocalBackEndServices();
|
InstanceServices = new LocalBackEndServices();
|
||||||
|
|
|
@ -16,35 +16,35 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
}
|
}
|
||||||
|
|
||||||
#region IInventoryServices Members
|
#region IInventoryServices Members
|
||||||
|
|
||||||
public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack)
|
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)
|
public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item)
|
public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item)
|
public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CreateNewUserInventory(LLUUID user)
|
public void CreateNewUserInventory(LLUUID user)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID)
|
public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID)
|
||||||
{
|
{
|
||||||
throw new Exception("The method or operation is not implemented.");
|
return new List<InventoryFolderBase>();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in New Issue