summaryrefslogtreecommitdiffstats
path: root/LMI_HostedRealmdService.h
blob: 06040f0737a97ee910029e555a610af5c79c66ae (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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
/*
**==============================================================================
**
** CAUTION: This file generated by KonkretCMPI. Please do not edit.
**
**==============================================================================
*/

#ifndef _konkrete_LMI_HostedRealmdService_h
#define _konkrete_LMI_HostedRealmdService_h

#include <konkret/konkret.h>
#include "CIM_ComputerSystem.h"
#include "LMI_RealmdService.h"

/*
**==============================================================================
**
** struct LMI_HostedRealmdServiceRef 
**
**==============================================================================
*/

/* classname=LMI_HostedRealmdService */
typedef struct _LMI_HostedRealmdServiceRef
{
    KBase __base;
    /* CIM_Dependency features */
    const KRef Antecedent; /* CIM_ComputerSystem */
    const KRef Dependent; /* LMI_RealmdService */
    /* CIM_HostedDependency features */
    /* CIM_HostedService features */
    /* LMI_HostedRealmdService features */
}
LMI_HostedRealmdServiceRef;

static const unsigned char __LMI_HostedRealmdServiceRef_sig[] =
{
    0x17,0x4c,0x4d,0x49,0x5f,0x48,0x6f,0x73,0x74,0x65,0x64,0x52,0x65,0x61,0x6c,
    0x6d,0x64,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x00,0x02,0x4e,0x0a,0x41,0x6e,
    0x74,0x65,0x63,0x65,0x64,0x65,0x6e,0x74,0x00,0x4e,0x09,0x44,0x65,0x70,0x65,
    0x6e,0x64,0x65,0x6e,0x74,0x00,
};

KINLINE void LMI_HostedRealmdServiceRef_Init(
    LMI_HostedRealmdServiceRef* self,
    const CMPIBroker* cb,
    const char* ns)
{
    const unsigned char* sig = __LMI_HostedRealmdServiceRef_sig;
    KBase_Init(&self->__base, cb, sizeof(*self), sig, ns);
    ((KRef*)&self->Antecedent)->__sig = __CIM_ComputerSystem_sig;
    ((KRef*)&self->Dependent)->__sig = __LMI_RealmdService_sig;
}

KINLINE CMPIStatus LMI_HostedRealmdServiceRef_InitFromInstance(
    LMI_HostedRealmdServiceRef* self,
    const CMPIBroker* cb,
    const CMPIInstance* x)
{
    LMI_HostedRealmdServiceRef_Init(self, cb, NULL);
    return KBase_FromInstance(&self->__base, x);
}

KINLINE CMPIStatus LMI_HostedRealmdServiceRef_InitFromObjectPath(
    LMI_HostedRealmdServiceRef* self,
    const CMPIBroker* cb,
    const CMPIObjectPath* x)
{
    LMI_HostedRealmdServiceRef_Init(self, cb, NULL);
    return KBase_FromObjectPath(&self->__base, x);
}

KINLINE void LMI_HostedRealmdServiceRef_Print(
    const LMI_HostedRealmdServiceRef* self,
    FILE* os)
{
    KBase_Print(os, &self->__base, 'r');
}

KINLINE CMPIInstance* LMI_HostedRealmdServiceRef_ToInstance(
    const LMI_HostedRealmdServiceRef* self,
    CMPIStatus* status)
{
    return KBase_ToInstance(&self->__base, status);
}

KINLINE CMPIObjectPath* LMI_HostedRealmdServiceRef_ToObjectPath(
    const LMI_HostedRealmdServiceRef* self,
    CMPIStatus* status)
{
    return KBase_ToObjectPath(&self->__base, status);
}

KINLINE const char* LMI_HostedRealmdServiceRef_NameSpace(
    LMI_HostedRealmdServiceRef* self)
{
    if (self && self->__base.magic == KMAGIC)
        return self->__base.ns ? KChars(self->__base.ns) : NULL;
    return NULL;
}

KINLINE void LMI_HostedRealmdServiceRef_SetObjectPath_Antecedent(
    LMI_HostedRealmdServiceRef* self,
    const CMPIObjectPath* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        KRef_SetObjectPath(field, x);
    }
}

KINLINE CMPIStatus LMI_HostedRealmdServiceRef_Set_Antecedent(
    LMI_HostedRealmdServiceRef* self,
    const CIM_ComputerSystemRef* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        return KRef_Set(field, &x->__base);
    }
    CMReturn(CMPI_RC_ERR_FAILED);
}

KINLINE void LMI_HostedRealmdServiceRef_Null_Antecedent(
    LMI_HostedRealmdServiceRef* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        KRef_Null(field);
    }
}

KINLINE void LMI_HostedRealmdServiceRef_Clr_Antecedent(
    LMI_HostedRealmdServiceRef* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        KRef_Clr(field);
    }
}

KINLINE void LMI_HostedRealmdServiceRef_SetObjectPath_Dependent(
    LMI_HostedRealmdServiceRef* self,
    const CMPIObjectPath* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        KRef_SetObjectPath(field, x);
    }
}

KINLINE CMPIStatus LMI_HostedRealmdServiceRef_Set_Dependent(
    LMI_HostedRealmdServiceRef* self,
    const LMI_RealmdServiceRef* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        return KRef_Set(field, &x->__base);
    }
    CMReturn(CMPI_RC_ERR_FAILED);
}

KINLINE void LMI_HostedRealmdServiceRef_Null_Dependent(
    LMI_HostedRealmdServiceRef* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        KRef_Null(field);
    }
}

KINLINE void LMI_HostedRealmdServiceRef_Clr_Dependent(
    LMI_HostedRealmdServiceRef* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        KRef_Clr(field);
    }
}

/*
**==============================================================================
**
** struct LMI_HostedRealmdService 
**
**==============================================================================
*/

/* classname=LMI_HostedRealmdService */
typedef struct _LMI_HostedRealmdService
{
    KBase __base;
    /* CIM_Dependency features */
    const KRef Antecedent; /* CIM_ComputerSystem */
    const KRef Dependent; /* LMI_RealmdService */
    /* CIM_HostedDependency features */
    /* CIM_HostedService features */
    /* LMI_HostedRealmdService features */
}
LMI_HostedRealmdService;

static const unsigned char __LMI_HostedRealmdService_sig[] =
{
    0x17,0x4c,0x4d,0x49,0x5f,0x48,0x6f,0x73,0x74,0x65,0x64,0x52,0x65,0x61,0x6c,
    0x6d,0x64,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x00,0x02,0x4e,0x0a,0x41,0x6e,
    0x74,0x65,0x63,0x65,0x64,0x65,0x6e,0x74,0x00,0x4e,0x09,0x44,0x65,0x70,0x65,
    0x6e,0x64,0x65,0x6e,0x74,0x00,
};

KINLINE void LMI_HostedRealmdService_Init(
    LMI_HostedRealmdService* self,
    const CMPIBroker* cb,
    const char* ns)
{
    const unsigned char* sig = __LMI_HostedRealmdService_sig;
    KBase_Init(&self->__base, cb, sizeof(*self), sig, ns);
    ((KRef*)&self->Antecedent)->__sig = __CIM_ComputerSystem_sig;
    ((KRef*)&self->Dependent)->__sig = __LMI_RealmdService_sig;
}

KINLINE CMPIStatus LMI_HostedRealmdService_InitFromInstance(
    LMI_HostedRealmdService* self,
    const CMPIBroker* cb,
    const CMPIInstance* x)
{
    LMI_HostedRealmdService_Init(self, cb, NULL);
    return KBase_FromInstance(&self->__base, x);
}

KINLINE CMPIStatus LMI_HostedRealmdService_InitFromObjectPath(
    LMI_HostedRealmdService* self,
    const CMPIBroker* cb,
    const CMPIObjectPath* x)
{
    LMI_HostedRealmdService_Init(self, cb, NULL);
    return KBase_FromObjectPath(&self->__base, x);
}

KINLINE void LMI_HostedRealmdService_Print(
    const LMI_HostedRealmdService* self,
    FILE* os)
{
    KBase_Print(os, &self->__base, 'i');
}

KINLINE CMPIInstance* LMI_HostedRealmdService_ToInstance(
    const LMI_HostedRealmdService* self,
    CMPIStatus* status)
{
    return KBase_ToInstance(&self->__base, status);
}

KINLINE CMPIObjectPath* LMI_HostedRealmdService_ToObjectPath(
    const LMI_HostedRealmdService* self,
    CMPIStatus* status)
{
    return KBase_ToObjectPath(&self->__base, status);
}

KINLINE const char* LMI_HostedRealmdService_NameSpace(
    LMI_HostedRealmdService* self)
{
    if (self && self->__base.magic == KMAGIC)
        return self->__base.ns ? KChars(self->__base.ns) : NULL;
    return NULL;
}

KINLINE void LMI_HostedRealmdService_SetObjectPath_Antecedent(
    LMI_HostedRealmdService* self,
    const CMPIObjectPath* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        KRef_SetObjectPath(field, x);
    }
}

KINLINE CMPIStatus LMI_HostedRealmdService_Set_Antecedent(
    LMI_HostedRealmdService* self,
    const CIM_ComputerSystemRef* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        return KRef_Set(field, &x->__base);
    }
    CMReturn(CMPI_RC_ERR_FAILED);
}

KINLINE void LMI_HostedRealmdService_Null_Antecedent(
    LMI_HostedRealmdService* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        KRef_Null(field);
    }
}

KINLINE void LMI_HostedRealmdService_Clr_Antecedent(
    LMI_HostedRealmdService* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Antecedent;
        KRef_Clr(field);
    }
}

KINLINE void LMI_HostedRealmdService_SetObjectPath_Dependent(
    LMI_HostedRealmdService* self,
    const CMPIObjectPath* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        KRef_SetObjectPath(field, x);
    }
}

KINLINE CMPIStatus LMI_HostedRealmdService_Set_Dependent(
    LMI_HostedRealmdService* self,
    const LMI_RealmdServiceRef* x)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        return KRef_Set(field, &x->__base);
    }
    CMReturn(CMPI_RC_ERR_FAILED);
}

KINLINE void LMI_HostedRealmdService_Null_Dependent(
    LMI_HostedRealmdService* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        KRef_Null(field);
    }
}

KINLINE void LMI_HostedRealmdService_Clr_Dependent(
    LMI_HostedRealmdService* self)
{
    if (self && self->__base.magic == KMAGIC)
    {
        KRef* field = (KRef*)&self->Dependent;
        KRef_Clr(field);
    }
}

/*
**==============================================================================
**
** LMI_HostedRealmdService methods
**
**==============================================================================
*/

KINLINE CMPIStatus LMI_HostedRealmdService_DispatchMethod(
    const CMPIBroker* cb,
    CMPIMethodMI* mi,
    const CMPIContext* cc,
    const CMPIResult* cr,
    const CMPIObjectPath* cop,
    const char* meth,
    const CMPIArgs* in,
    CMPIArgs* out)
{
    LMI_HostedRealmdServiceRef self;

    KReturnIf(LMI_HostedRealmdServiceRef_InitFromObjectPath(&self, cb, cop));


    KReturn(ERR_METHOD_NOT_FOUND);
}

#define LMI_HostedRealmdService_ClassName "LMI_HostedRealmdService"

#endif /* _konkrete_LMI_HostedRealmdService_h */