aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
blob: d5dbc46433d4073e31b2f95c9951b45fce699a29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using libsecondlife;
using OpenSim.Framework.Communications;
using OpenSim.Framework.Data;
using InventoryFolder = OpenSim.Framework.Communications.Caches.InventoryFolder;

namespace OpenSim.Region.Communications.OGS1
{
    public class OGS1InventoryService : IInventoryServices
    {

        public OGS1InventoryService()
        {

        }

        #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.");
        }

        #endregion
    }
}