summaryrefslogtreecommitdiff
path: root/idl/parlay/fw_if_entop.idl
blob: 4c6ae83c5778a855e827972c97435b934860c09a (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
//Source file: fw_if_entop.idl
//Date:  13 October 2004
//Framework to Enterprise Operator Interfaces for ES 203 915-03 V1.1.1, DES/TISPAN-01005-03-OSA, Parlay 5.0

#ifndef __FW_IF_ENTOP_DEFINED
#define __FW_IF_ENTOP_DEFINED

#include "osa.idl"
#include "fw_data.idl"

module org {
	
	module csapi {
		
		module fw {
			
			module fw_enterprise_operator {
				
				
				module service_subscription {
					
					
					interface IpServiceProfileManagement : IpInterface {
						TpServiceProfileID createServiceProfile (
							in TpServiceProfileDescription serviceProfileDescription	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
						void modifyServiceProfile (
							in TpServiceProfile serviceProfile	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_PROFILE_ID);
							
						void deleteServiceProfile (
							in TpServiceProfileID serviceProfileID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_PROFILE_ID);
							
						void assign (
							in TpSagID sagID,	
							in TpServiceProfileID serviceProfileID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SAG_ID,P_INVALID_SERVICE_PROFILE_ID,P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT);
							
						void deassign (
							in TpSagID sagID,	
							in TpServiceProfileID serviceProfileID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SAG_ID,P_INVALID_SERVICE_PROFILE_ID);
							
						TpAssignSagToServiceProfileConflictList requestConflictInfo ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
					};
					
					
					interface IpServiceProfileInfoQuery : IpInterface {
						TpServiceProfileIDList listServiceProfiles ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
						TpServiceProfileDescription describeServiceProfile (
							in TpServiceProfileID serviceProfileID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_PROFILE_ID);
							
						TpSagIDList listAssignedMembers (
							in TpServiceProfileID serviceProfileID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_PROFILE_ID);
							
					};
					
					
					interface IpServiceContractManagement : IpInterface {
						TpServiceContractID createServiceContract (
							in TpServiceContractDescription serviceContractDescription	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_ID);
							
						void modifyServiceContract (
							in TpServiceContract serviceContract	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_ID,P_INVALID_SERVICE_CONTRACT_ID);
							
						void deleteServiceContract (
							in TpServiceContractID serviceContractID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_CONTRACT_ID);
							
					};
					
					
					interface IpServiceContractInfoQuery : IpInterface {
						TpServiceContractDescription describeServiceContract (
							in TpServiceContractID serviceContractID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_CONTRACT_ID);
							
						TpServiceContractIDList listServiceContracts ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
						TpServiceProfileIDList listServiceProfiles (
							in TpServiceContractID serviceContractID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SERVICE_CONTRACT_ID);
							
					};
					
					
					interface IpEntOpAccountManagement : IpInterface {
						void modifyEntOpAccount (
							in TpEntOpProperties enterpriseOperatorProperties	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_PROPERTY);
							
						void deleteEntOpAccount ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
					};
					
					
					interface IpEntOpAccountInfoQuery : IpInterface {
						TpEntOp describeEntOpAccount ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
					};
					
					
					interface IpClientAppManagement : IpInterface {
						void createClientApp (
							in TpClientAppDescription clientAppDescription	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID);
							
						void modifyClientApp (
							in TpClientAppDescription clientAppDescription	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID);
							
						void deleteClientApp (
							in TpClientAppID clientAppID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID);
							
						void createSAG (
							in TpSag sag,	
							in TpClientAppIDList clientAppIDs	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID,P_INVALID_SAG_ID);
							
						void modifySAG (
							in TpSag sag	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SAG_ID);
							
						void deleteSAG (
							in TpSagID sagID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SAG_ID);
							
						void addSAGMembers (
							in TpSagID sagID,	
							in TpClientAppIDList clientAppIDs	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID,P_INVALID_SAG_ID,P_INVALID_ADDITION_TO_SAG);
							
						void removeSAGMembers (
							in TpSagID sagID,	
							in TpClientAppIDList clientAppIDList	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID,P_INVALID_SAG_ID);
							
						TpAddSagMembersConflictList requestConflictInfo ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
					};
					
					
					interface IpClientAppInfoQuery : IpInterface {
						TpClientAppDescription describeClientApp (
							in TpClientAppID clientAppID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID);
							
						TpClientAppIDList listClientApps ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
						TpSagDescription describeSAG (
							in TpSagID sagID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SAG_ID);
							
						TpSagIDList listSAGs ()							
							raises (TpCommonExceptions,P_ACCESS_DENIED);
							
						TpClientAppIDList listSAGMembers (
							in TpSagID sagID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_SAG_ID);
							
						TpSagIDList listClientAppMembership (
							in TpClientAppID clientAppID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CLIENT_APP_ID);
							
					};
					
				};
				
				module notification {
					
					
					interface IpClientEventNotification : IpInterface {
						void reportNotification (
							in TpFwEventInfo eventInfo,	
							in TpAssignmentID assignmentID	
							);
							
						void notificationTerminated ();
							
					};
					
					
					interface IpEventNotification : IpInterface {
						TpAssignmentID createNotification (
							in TpFwEventCriteria eventCriteria	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_CRITERIA,P_INVALID_EVENT_TYPE);
							
						void destroyNotification (
							in TpAssignmentID assignmentID	
							)							
							raises (TpCommonExceptions,P_ACCESS_DENIED,P_INVALID_ASSIGNMENT_ID);
							
					};
					
				};
				
			};
			
			
		};
		
	};
	
};

#endif