diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/IGroupDataProvider.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/IGroupDataProvider.cs | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/IGroupDataProvider.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/IGroupDataProvider.cs new file mode 100644 index 0000000..6e9105d --- /dev/null +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/IGroupDataProvider.cs | |||
@@ -0,0 +1,85 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | |||
31 | using OpenMetaverse; | ||
32 | |||
33 | using OpenSim.Framework; | ||
34 | |||
35 | namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | ||
36 | { | ||
37 | interface IGroupDataProvider | ||
38 | { | ||
39 | UUID CreateGroup(string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish, UUID founderID); | ||
40 | void UpdateGroup(UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish); | ||
41 | GroupRecord GetGroupRecord(UUID GroupID, string GroupName); | ||
42 | List<DirGroupsReplyData> FindGroups(string search); | ||
43 | List<GroupMembersData> GetGroupMembers(UUID GroupID); | ||
44 | |||
45 | void AddGroupRole(UUID groupID, UUID roleID, string name, string description, string title, ulong powers); | ||
46 | void UpdateGroupRole(UUID groupID, UUID roleID, string name, string description, string title, ulong powers); | ||
47 | void RemoveGroupRole(UUID groupID, UUID roleID); | ||
48 | List<GroupRolesData> GetGroupRoles(UUID GroupID); | ||
49 | List<GroupRoleMembersData> GetGroupRoleMembers(UUID GroupID); | ||
50 | |||
51 | void AddAgentToGroup(UUID AgentID, UUID GroupID, UUID RoleID); | ||
52 | void RemoveAgentFromGroup(UUID AgentID, UUID GroupID); | ||
53 | |||
54 | void AddAgentToGroupInvite(UUID inviteID, UUID groupID, UUID roleID, UUID agentID); | ||
55 | GroupInviteInfo GetAgentToGroupInvite(UUID inviteID); | ||
56 | void RemoveAgentToGroupInvite(UUID inviteID); | ||
57 | |||
58 | |||
59 | void AddAgentToGroupRole(UUID AgentID, UUID GroupID, UUID RoleID); | ||
60 | void RemoveAgentFromGroupRole(UUID AgentID, UUID GroupID, UUID RoleID); | ||
61 | List<GroupRolesData> GetAgentGroupRoles(UUID AgentID, UUID GroupID); | ||
62 | |||
63 | void SetAgentActiveGroup(UUID AgentID, UUID GroupID); | ||
64 | GroupMembershipData GetAgentActiveMembership(UUID AgentID); | ||
65 | |||
66 | void SetAgentActiveGroupRole(UUID AgentID, UUID GroupID, UUID RoleID); | ||
67 | void SetAgentGroupInfo(UUID AgentID, UUID GroupID, bool AcceptNotices, bool ListInProfile); | ||
68 | |||
69 | GroupMembershipData GetAgentGroupMembership(UUID AgentID, UUID GroupID); | ||
70 | List<GroupMembershipData> GetAgentGroupMemberships(UUID AgentID); | ||
71 | |||
72 | void AddGroupNotice(UUID groupID, UUID noticeID, string fromName, string subject, string message, byte[] binaryBucket); | ||
73 | GroupNoticeInfo GetGroupNotice(UUID noticeID); | ||
74 | List<GroupNoticeData> GetGroupNotices(UUID GroupID); | ||
75 | } | ||
76 | |||
77 | public class GroupInviteInfo | ||
78 | { | ||
79 | public UUID GroupID = UUID.Zero; | ||
80 | public UUID RoleID = UUID.Zero; | ||
81 | public UUID AgentID = UUID.Zero; | ||
82 | public UUID InviteID = UUID.Zero; | ||
83 | } | ||
84 | |||
85 | } | ||