* So, ok, maybe a bit harsh to explode on grid inventory calls.

afrisby
lbsa71 2007-09-24 09:19:31 +00:00
parent ee5f069e2a
commit 00ddeebf57
2 changed files with 7 additions and 9 deletions

View File

@ -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();

View File

@ -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