@itentialopensource/adapter-checkpoint_management 0.2.4 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +1 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +169 -0
- package/CHANGELOG.md +52 -13
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +88 -74
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +228 -420
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +2359 -37
- package/adapterBase.js +1270 -238
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +5 -5
- package/entities/APISettings/action.json +3 -3
- package/entities/AccessLayer/action.json +6 -6
- package/entities/AccessRole/action.json +6 -6
- package/entities/AccessRule/action.json +6 -6
- package/entities/AccessSection/action.json +5 -5
- package/entities/AddressRange/action.json +6 -6
- package/entities/Administrator/action.json +7 -7
- package/entities/Application/action.json +6 -6
- package/entities/ApplicationCategory/action.json +6 -6
- package/entities/ApplicationGroup/action.json +6 -6
- package/entities/DNSDomain/action.json +6 -6
- package/entities/DataCenter/action.json +4 -4
- package/entities/DataCenterObject/action.json +5 -5
- package/entities/Domain/action.json +6 -6
- package/entities/DynamicObject/action.json +6 -6
- package/entities/GlobalAssignment/action.json +7 -7
- package/entities/GlobalDomain/action.json +3 -3
- package/entities/Group/action.json +6 -6
- package/entities/GroupWithExclusion/action.json +6 -6
- package/entities/Host/action.json +6 -6
- package/entities/IPS/action.json +5 -5
- package/entities/IPSExtendedAttributes/action.json +3 -3
- package/entities/LoginMessage/action.json +3 -3
- package/entities/Misc/action.json +15 -15
- package/entities/MultiDomainServerMDS/action.json +3 -3
- package/entities/MulticastAddressRange/action.json +6 -6
- package/entities/NATRule/action.json +6 -6
- package/entities/NATSection/action.json +5 -5
- package/entities/Network/action.json +6 -6
- package/entities/OPSECApplication/action.json +6 -6
- package/entities/Placeholder/action.json +2 -2
- package/entities/Policy/action.json +3 -3
- package/entities/PolicyPackage/action.json +6 -6
- package/entities/SecurityZone/action.json +6 -6
- package/entities/ServiceDCERPC/action.json +6 -6
- package/entities/ServiceGroup/action.json +6 -6
- package/entities/ServiceICMP/action.json +6 -6
- package/entities/ServiceICMP6/action.json +6 -6
- package/entities/ServiceOther/action.json +6 -6
- package/entities/ServiceRPC/action.json +6 -6
- package/entities/ServiceSCTP/action.json +6 -6
- package/entities/ServiceTCP/action.json +6 -6
- package/entities/ServiceUDP/action.json +6 -6
- package/entities/Session/action.json +10 -10
- package/entities/SessionManagement/action.json +7 -7
- package/entities/SimpleGateway/action.json +6 -6
- package/entities/Tags/action.json +6 -6
- package/entities/ThreatEmulation/action.json +2 -2
- package/entities/ThreatException/action.json +6 -6
- package/entities/ThreatExceptionGroup/action.json +6 -6
- package/entities/ThreatIndicator/action.json +6 -6
- package/entities/ThreatLayer/action.json +6 -6
- package/entities/ThreatProfile/action.json +6 -6
- package/entities/ThreatProtection/action.json +6 -6
- package/entities/ThreatRule/action.json +6 -6
- package/entities/Time/action.json +6 -6
- package/entities/TimeGroup/action.json +6 -6
- package/entities/TrustedClient/action.json +6 -6
- package/entities/UpdatableObject/action.json +5 -5
- package/entities/UpdatableObjectsRepository/action.json +3 -3
- package/entities/VPNCommunityMeshed/action.json +6 -6
- package/entities/VPNCommunityStar/action.json +6 -6
- package/entities/Wildcard/action.json +6 -6
- package/error.json +12 -0
- package/package.json +41 -18
- package/pronghorn.json +642 -74
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +472 -4
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1614705421970.json +95 -0
- package/report/updateReport1646177180887.json +95 -0
- package/report/updateReport1653864222137.json +120 -0
- package/sampleProperties.json +113 -12
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +29 -98
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +642 -109
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +3 -0
- package/utils/removeHooks.js +20 -0
- package/utils/tbScript.js +184 -0
- package/utils/tbUtils.js +469 -0
- package/utils/testRunner.js +16 -16
- package/utils/troubleshootingAdapter.js +190 -0
- package/img/adapter.jpg +0 -0
package/adapter.js
CHANGED
|
@@ -80,11 +80,37 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* @iapGetAdapterWorkflowFunctions
|
|
84
|
+
*/
|
|
85
|
+
iapGetAdapterWorkflowFunctions(inIgnore) {
|
|
86
|
+
let myIgnore = [
|
|
87
|
+
'healthCheck',
|
|
88
|
+
'iapGetAdapterWorkflowFunctions',
|
|
89
|
+
'iapHasAdapterEntity',
|
|
90
|
+
'iapVerifyAdapterCapability',
|
|
91
|
+
'iapUpdateAdapterEntityCache',
|
|
92
|
+
'hasEntities',
|
|
93
|
+
'getAuthorization'
|
|
94
|
+
];
|
|
95
|
+
if (!inIgnore && Array.isArray(inIgnore)) {
|
|
96
|
+
myIgnore = inIgnore;
|
|
97
|
+
} else if (!inIgnore && typeof inIgnore === 'string') {
|
|
98
|
+
myIgnore = [inIgnore];
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// The generic adapter functions should already be ignored (e.g. healthCheck)
|
|
102
|
+
// you can add specific methods that you do not want to be workflow functions to ignore like below
|
|
103
|
+
// myIgnore.push('myMethodNotInWorkflow');
|
|
104
|
+
|
|
105
|
+
return super.iapGetAdapterWorkflowFunctions(myIgnore);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* iapUpdateAdapterConfiguration is used to update any of the adapter configuration files. This
|
|
84
110
|
* allows customers to make changes to adapter configuration without having to be on the
|
|
85
111
|
* file system.
|
|
86
112
|
*
|
|
87
|
-
* @function
|
|
113
|
+
* @function iapUpdateAdapterConfiguration
|
|
88
114
|
* @param {string} configFile - the name of the file being updated (required)
|
|
89
115
|
* @param {Object} changes - an object containing all of the changes = formatted like the configuration file (required)
|
|
90
116
|
* @param {string} entity - the entity to be changed, if an action, schema or mock data file (optional)
|
|
@@ -92,59 +118,206 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
92
118
|
* @param {string} action - the action to be changed, if an action, schema or mock data file (optional)
|
|
93
119
|
* @param {Callback} callback - The results of the call
|
|
94
120
|
*/
|
|
95
|
-
|
|
96
|
-
|
|
121
|
+
iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback) {
|
|
122
|
+
const meth = 'adapter-iapUpdateAdapterConfiguration';
|
|
123
|
+
const origin = `${this.id}-${meth}`;
|
|
124
|
+
log.trace(origin);
|
|
125
|
+
|
|
126
|
+
super.iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback);
|
|
97
127
|
}
|
|
98
128
|
|
|
99
129
|
/**
|
|
100
|
-
*
|
|
101
|
-
*
|
|
130
|
+
* See if the API path provided is found in this adapter
|
|
131
|
+
*
|
|
132
|
+
* @function iapFindAdapterPath
|
|
133
|
+
* @param {string} apiPath - the api path to check on
|
|
134
|
+
* @param {Callback} callback - The results of the call
|
|
102
135
|
*/
|
|
136
|
+
iapFindAdapterPath(apiPath, callback) {
|
|
137
|
+
const meth = 'adapter-iapFindAdapterPath';
|
|
138
|
+
const origin = `${this.id}-${meth}`;
|
|
139
|
+
log.trace(origin);
|
|
140
|
+
|
|
141
|
+
super.iapFindAdapterPath(apiPath, callback);
|
|
142
|
+
}
|
|
143
|
+
|
|
103
144
|
/**
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
145
|
+
* @summary Suspends adapter
|
|
146
|
+
*
|
|
147
|
+
* @function iapSuspendAdapter
|
|
148
|
+
* @param {Callback} callback - callback function
|
|
149
|
+
*/
|
|
150
|
+
iapSuspendAdapter(mode, callback) {
|
|
151
|
+
const meth = 'adapter-iapSuspendAdapter';
|
|
152
|
+
const origin = `${this.id}-${meth}`;
|
|
153
|
+
log.trace(origin);
|
|
154
|
+
|
|
155
|
+
try {
|
|
156
|
+
return super.iapSuspendAdapter(mode, callback);
|
|
157
|
+
} catch (error) {
|
|
158
|
+
log.error(`${origin}: ${error}`);
|
|
159
|
+
return callback(null, error);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
108
163
|
/**
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
164
|
+
* @summary Unsuspends adapter
|
|
165
|
+
*
|
|
166
|
+
* @function iapUnsuspendAdapter
|
|
167
|
+
* @param {Callback} callback - callback function
|
|
168
|
+
*/
|
|
169
|
+
iapUnsuspendAdapter(callback) {
|
|
170
|
+
const meth = 'adapter-iapUnsuspendAdapter';
|
|
171
|
+
const origin = `${this.id}-${meth}`;
|
|
172
|
+
log.trace(origin);
|
|
173
|
+
|
|
174
|
+
try {
|
|
175
|
+
return super.iapUnsuspendAdapter(callback);
|
|
176
|
+
} catch (error) {
|
|
177
|
+
log.error(`${origin}: ${error}`);
|
|
178
|
+
return callback(null, error);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
113
182
|
/**
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
183
|
+
* @summary Get the Adaoter Queue
|
|
184
|
+
*
|
|
185
|
+
* @function iapGetAdapterQueue
|
|
186
|
+
* @param {Callback} callback - callback function
|
|
187
|
+
*/
|
|
188
|
+
iapGetAdapterQueue(callback) {
|
|
189
|
+
const meth = 'adapter-iapGetAdapterQueue';
|
|
190
|
+
const origin = `${this.id}-${meth}`;
|
|
191
|
+
log.trace(origin);
|
|
192
|
+
|
|
193
|
+
return super.iapGetAdapterQueue(callback);
|
|
194
|
+
}
|
|
195
|
+
|
|
118
196
|
/**
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
197
|
+
* @summary Runs troubleshoot scripts for adapter
|
|
198
|
+
*
|
|
199
|
+
* @function iapTroubleshootAdapter
|
|
200
|
+
* @param {Object} props - the connection, healthcheck and authentication properties
|
|
201
|
+
*
|
|
202
|
+
* @param {boolean} persistFlag - whether the adapter properties should be updated
|
|
203
|
+
* @param {Callback} callback - The results of the call
|
|
204
|
+
*/
|
|
205
|
+
iapTroubleshootAdapter(props, persistFlag, callback) {
|
|
206
|
+
const meth = 'adapter-iapTroubleshootAdapter';
|
|
207
|
+
const origin = `${this.id}-${meth}`;
|
|
208
|
+
log.trace(origin);
|
|
209
|
+
|
|
210
|
+
try {
|
|
211
|
+
return super.iapTroubleshootAdapter(props, persistFlag, this, callback);
|
|
212
|
+
} catch (error) {
|
|
213
|
+
log.error(`${origin}: ${error}`);
|
|
214
|
+
return callback(null, error);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @summary runs healthcheck script for adapter
|
|
220
|
+
*
|
|
221
|
+
* @function iapRunAdapterHealthcheck
|
|
222
|
+
* @param {Adapter} adapter - adapter instance to troubleshoot
|
|
223
|
+
* @param {Callback} callback - callback function
|
|
224
|
+
*/
|
|
225
|
+
iapRunAdapterHealthcheck(callback) {
|
|
226
|
+
const meth = 'adapter-iapRunAdapterHealthcheck';
|
|
227
|
+
const origin = `${this.id}-${meth}`;
|
|
228
|
+
log.trace(origin);
|
|
229
|
+
|
|
230
|
+
try {
|
|
231
|
+
return super.iapRunAdapterHealthcheck(this, callback);
|
|
232
|
+
} catch (error) {
|
|
233
|
+
log.error(`${origin}: ${error}`);
|
|
234
|
+
return callback(null, error);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* @summary runs connectivity check script for adapter
|
|
240
|
+
*
|
|
241
|
+
* @function iapRunAdapterConnectivity
|
|
242
|
+
* @param {Callback} callback - callback function
|
|
243
|
+
*/
|
|
244
|
+
iapRunAdapterConnectivity(callback) {
|
|
245
|
+
const meth = 'adapter-iapRunAdapterConnectivity';
|
|
246
|
+
const origin = `${this.id}-${meth}`;
|
|
247
|
+
log.trace(origin);
|
|
248
|
+
|
|
249
|
+
try {
|
|
250
|
+
return super.iapRunAdapterConnectivity(callback);
|
|
251
|
+
} catch (error) {
|
|
252
|
+
log.error(`${origin}: ${error}`);
|
|
253
|
+
return callback(null, error);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* @summary runs basicGet script for adapter
|
|
259
|
+
*
|
|
260
|
+
* @function iapRunAdapterBasicGet
|
|
261
|
+
* @param {Callback} callback - callback function
|
|
262
|
+
*/
|
|
263
|
+
iapRunAdapterBasicGet(callback) {
|
|
264
|
+
const meth = 'adapter-iapRunAdapterBasicGet';
|
|
265
|
+
const origin = `${this.id}-${meth}`;
|
|
266
|
+
log.trace(origin);
|
|
267
|
+
|
|
268
|
+
try {
|
|
269
|
+
return super.iapRunAdapterBasicGet(callback);
|
|
270
|
+
} catch (error) {
|
|
271
|
+
log.error(`${origin}: ${error}`);
|
|
272
|
+
return callback(null, error);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* @summary moves entites into Mongo DB
|
|
278
|
+
*
|
|
279
|
+
* @function iapMoveAdapterEntitiesToDB
|
|
280
|
+
* @param {getCallback} callback - a callback function to return the result (Generics)
|
|
281
|
+
* or the error
|
|
122
282
|
*/
|
|
283
|
+
iapMoveAdapterEntitiesToDB(callback) {
|
|
284
|
+
const meth = 'adapter-iapMoveAdapterEntitiesToDB';
|
|
285
|
+
const origin = `${this.id}-${meth}`;
|
|
286
|
+
log.trace(origin);
|
|
123
287
|
|
|
288
|
+
try {
|
|
289
|
+
return super.iapMoveAdapterEntitiesToDB(callback);
|
|
290
|
+
} catch (err) {
|
|
291
|
+
log.error(`${origin}: ${err}`);
|
|
292
|
+
return callback(null, err);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/* BROKER CALLS */
|
|
124
297
|
/**
|
|
125
298
|
* @summary Determines if this adapter supports the specific entity
|
|
126
299
|
*
|
|
127
|
-
* @function
|
|
300
|
+
* @function iapHasAdapterEntity
|
|
128
301
|
* @param {String} entityType - the entity type to check for
|
|
129
302
|
* @param {String/Array} entityId - the specific entity we are looking for
|
|
130
303
|
*
|
|
131
304
|
* @param {Callback} callback - An array of whether the adapter can has the
|
|
132
305
|
* desired capability or an error
|
|
133
306
|
*/
|
|
134
|
-
|
|
135
|
-
const origin = `${this.id}-adapter-
|
|
307
|
+
iapHasAdapterEntity(entityType, entityId, callback) {
|
|
308
|
+
const origin = `${this.id}-adapter-iapHasAdapterEntity`;
|
|
136
309
|
log.trace(origin);
|
|
137
310
|
|
|
138
311
|
// Make the call -
|
|
139
|
-
//
|
|
140
|
-
return this.
|
|
312
|
+
// iapVerifyAdapterCapability(entityType, actionType, entityId, callback)
|
|
313
|
+
return this.iapVerifyAdapterCapability(entityType, null, entityId, callback);
|
|
141
314
|
}
|
|
142
315
|
|
|
143
316
|
/**
|
|
144
317
|
* @summary Provides a way for the adapter to tell north bound integrations
|
|
145
318
|
* whether the adapter supports type, action and specific entity
|
|
146
319
|
*
|
|
147
|
-
* @function
|
|
320
|
+
* @function iapVerifyAdapterCapability
|
|
148
321
|
* @param {String} entityType - the entity type to check for
|
|
149
322
|
* @param {String} actionType - the action type to check for
|
|
150
323
|
* @param {String/Array} entityId - the specific entity we are looking for
|
|
@@ -152,15 +325,15 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
152
325
|
* @param {Callback} callback - An array of whether the adapter can has the
|
|
153
326
|
* desired capability or an error
|
|
154
327
|
*/
|
|
155
|
-
|
|
156
|
-
const meth = 'adapterBase-
|
|
328
|
+
iapVerifyAdapterCapability(entityType, actionType, entityId, callback) {
|
|
329
|
+
const meth = 'adapterBase-iapVerifyAdapterCapability';
|
|
157
330
|
const origin = `${this.id}-${meth}`;
|
|
158
331
|
log.trace(origin);
|
|
159
332
|
|
|
160
333
|
// if caching
|
|
161
334
|
if (this.caching) {
|
|
162
|
-
// Make the call -
|
|
163
|
-
return this.requestHandlerInst.
|
|
335
|
+
// Make the call - iapVerifyAdapterCapability(entityType, actionType, entityId, callback)
|
|
336
|
+
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, entityId, (results, error) => {
|
|
164
337
|
if (error) {
|
|
165
338
|
return callback(null, error);
|
|
166
339
|
}
|
|
@@ -178,7 +351,7 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
178
351
|
}
|
|
179
352
|
|
|
180
353
|
// need to check the cache again since it has been updated
|
|
181
|
-
return this.requestHandlerInst.
|
|
354
|
+
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, entityId, (vcapable, verror) => {
|
|
182
355
|
if (verror) {
|
|
183
356
|
return callback(null, verror);
|
|
184
357
|
}
|
|
@@ -211,7 +384,7 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
211
384
|
// if no entity id
|
|
212
385
|
if (!entityId) {
|
|
213
386
|
// need to check the cache again since it has been updated
|
|
214
|
-
return this.requestHandlerInst.
|
|
387
|
+
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, null, (vcapable, verror) => {
|
|
215
388
|
if (verror) {
|
|
216
389
|
return callback(null, verror);
|
|
217
390
|
}
|
|
@@ -232,7 +405,7 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
232
405
|
}
|
|
233
406
|
|
|
234
407
|
// need to check the cache again since it has been updated
|
|
235
|
-
return this.requestHandlerInst.
|
|
408
|
+
return this.requestHandlerInst.iapVerifyAdapterCapability(entityType, actionType, null, (vcapable, verror) => {
|
|
236
409
|
if (verror) {
|
|
237
410
|
return callback(null, verror);
|
|
238
411
|
}
|
|
@@ -273,11 +446,11 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
273
446
|
/**
|
|
274
447
|
* @summary Updates the cache for all entities by call the get All entity method
|
|
275
448
|
*
|
|
276
|
-
* @function
|
|
449
|
+
* @function iapUpdateAdapterEntityCache
|
|
277
450
|
*
|
|
278
451
|
*/
|
|
279
|
-
|
|
280
|
-
const origin = `${this.id}-adapter-
|
|
452
|
+
iapUpdateAdapterEntityCache() {
|
|
453
|
+
const origin = `${this.id}-adapter-iapUpdateAdapterEntityCache`;
|
|
281
454
|
log.trace(origin);
|
|
282
455
|
|
|
283
456
|
if (this.caching) {
|
|
@@ -290,6 +463,385 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
290
463
|
}
|
|
291
464
|
}
|
|
292
465
|
|
|
466
|
+
/**
|
|
467
|
+
* @summary Determines if this adapter supports any in a list of entities
|
|
468
|
+
*
|
|
469
|
+
* @function hasEntities
|
|
470
|
+
* @param {String} entityType - the entity type to check for
|
|
471
|
+
* @param {Array} entityList - the list of entities we are looking for
|
|
472
|
+
*
|
|
473
|
+
* @param {Callback} callback - A map where the entity is the key and the
|
|
474
|
+
* value is true or false
|
|
475
|
+
*/
|
|
476
|
+
hasEntities(entityType, entityList, callback) {
|
|
477
|
+
const meth = 'adapter-hasEntities';
|
|
478
|
+
const origin = `${this.id}-${meth}`;
|
|
479
|
+
log.trace(origin);
|
|
480
|
+
|
|
481
|
+
try {
|
|
482
|
+
return super.hasEntities(entityType, entityList, callback);
|
|
483
|
+
} catch (err) {
|
|
484
|
+
log.error(`${origin}: ${err}`);
|
|
485
|
+
return callback(null, err);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* @summary Get Appliance that match the deviceName
|
|
491
|
+
*
|
|
492
|
+
* @function getDevice
|
|
493
|
+
* @param {String} deviceName - the deviceName to find (required)
|
|
494
|
+
*
|
|
495
|
+
* @param {getCallback} callback - a callback function to return the result
|
|
496
|
+
* (appliance) or the error
|
|
497
|
+
*/
|
|
498
|
+
getDevice(deviceName, callback) {
|
|
499
|
+
const meth = 'adapter-getDevice';
|
|
500
|
+
const origin = `${this.id}-${meth}`;
|
|
501
|
+
log.trace(origin);
|
|
502
|
+
|
|
503
|
+
try {
|
|
504
|
+
return super.getDevice(deviceName, callback);
|
|
505
|
+
} catch (err) {
|
|
506
|
+
log.error(`${origin}: ${err}`);
|
|
507
|
+
return callback(null, err);
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* @summary Get Appliances that match the filter
|
|
513
|
+
*
|
|
514
|
+
* @function getDevicesFiltered
|
|
515
|
+
* @param {Object} options - the data to use to filter the appliances (optional)
|
|
516
|
+
*
|
|
517
|
+
* @param {getCallback} callback - a callback function to return the result
|
|
518
|
+
* (appliances) or the error
|
|
519
|
+
*/
|
|
520
|
+
getDevicesFiltered(options, callback) {
|
|
521
|
+
const meth = 'adapter-getDevicesFiltered';
|
|
522
|
+
const origin = `${this.id}-${meth}`;
|
|
523
|
+
log.trace(origin);
|
|
524
|
+
|
|
525
|
+
try {
|
|
526
|
+
return super.getDevicesFiltered(options, callback);
|
|
527
|
+
} catch (err) {
|
|
528
|
+
log.error(`${origin}: ${err}`);
|
|
529
|
+
return callback(null, err);
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* @summary Gets the status for the provided appliance
|
|
535
|
+
*
|
|
536
|
+
* @function isAlive
|
|
537
|
+
* @param {String} deviceName - the deviceName of the appliance. (required)
|
|
538
|
+
*
|
|
539
|
+
* @param {configCallback} callback - callback function to return the result
|
|
540
|
+
* (appliance isAlive) or the error
|
|
541
|
+
*/
|
|
542
|
+
isAlive(deviceName, callback) {
|
|
543
|
+
const meth = 'adapter-isAlive';
|
|
544
|
+
const origin = `${this.id}-${meth}`;
|
|
545
|
+
log.trace(origin);
|
|
546
|
+
|
|
547
|
+
try {
|
|
548
|
+
return super.isAlive(deviceName, callback);
|
|
549
|
+
} catch (err) {
|
|
550
|
+
log.error(`${origin}: ${err}`);
|
|
551
|
+
return callback(null, err);
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* @summary Gets a config for the provided Appliance
|
|
557
|
+
*
|
|
558
|
+
* @function getConfig
|
|
559
|
+
* @param {String} deviceName - the deviceName of the appliance. (required)
|
|
560
|
+
* @param {String} format - the desired format of the config. (optional)
|
|
561
|
+
*
|
|
562
|
+
* @param {configCallback} callback - callback function to return the result
|
|
563
|
+
* (appliance config) or the error
|
|
564
|
+
*/
|
|
565
|
+
getConfig(deviceName, format, callback) {
|
|
566
|
+
const meth = 'adapter-getConfig';
|
|
567
|
+
const origin = `${this.id}-${meth}`;
|
|
568
|
+
log.trace(origin);
|
|
569
|
+
|
|
570
|
+
try {
|
|
571
|
+
return super.getConfig(deviceName, format, callback);
|
|
572
|
+
} catch (err) {
|
|
573
|
+
log.error(`${origin}: ${err}`);
|
|
574
|
+
return callback(null, err);
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* @summary Gets the device count from the system
|
|
580
|
+
*
|
|
581
|
+
* @function iapGetDeviceCount
|
|
582
|
+
*
|
|
583
|
+
* @param {getCallback} callback - callback function to return the result
|
|
584
|
+
* (count) or the error
|
|
585
|
+
*/
|
|
586
|
+
iapGetDeviceCount(callback) {
|
|
587
|
+
const meth = 'adapter-iapGetDeviceCount';
|
|
588
|
+
const origin = `${this.id}-${meth}`;
|
|
589
|
+
log.trace(origin);
|
|
590
|
+
|
|
591
|
+
try {
|
|
592
|
+
return super.iapGetDeviceCount(callback);
|
|
593
|
+
} catch (err) {
|
|
594
|
+
log.error(`${origin}: ${err}`);
|
|
595
|
+
return callback(null, err);
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
/* GENERIC ADAPTER REQUEST - allows extension of adapter without new calls being added */
|
|
600
|
+
/**
|
|
601
|
+
* Makes the requested generic call
|
|
602
|
+
*
|
|
603
|
+
* @function genericAdapterRequest
|
|
604
|
+
* @param {String} uriPath - the path of the api call - do not include the host, port, base path or version (required)
|
|
605
|
+
* @param {String} restMethod - the rest method (GET, POST, PUT, PATCH, DELETE) (required)
|
|
606
|
+
* @param {Object} queryData - the parameters to be put on the url (optional).
|
|
607
|
+
* Can be a stringified Object.
|
|
608
|
+
* @param {Object} requestBody - the body to add to the request (optional).
|
|
609
|
+
* Can be a stringified Object.
|
|
610
|
+
* @param {Object} addlHeaders - additional headers to be put on the call (optional).
|
|
611
|
+
* Can be a stringified Object.
|
|
612
|
+
* @param {getCallback} callback - a callback function to return the result (Generics)
|
|
613
|
+
* or the error
|
|
614
|
+
*/
|
|
615
|
+
genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback) {
|
|
616
|
+
const meth = 'adapter-genericAdapterRequest';
|
|
617
|
+
const origin = `${this.id}-${meth}`;
|
|
618
|
+
log.trace(origin);
|
|
619
|
+
|
|
620
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
621
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
622
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
623
|
+
return callback(null, errorObj);
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
627
|
+
if (uriPath === undefined || uriPath === null || uriPath === '') {
|
|
628
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['uriPath'], null, null, null);
|
|
629
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
630
|
+
return callback(null, errorObj);
|
|
631
|
+
}
|
|
632
|
+
if (restMethod === undefined || restMethod === null || restMethod === '') {
|
|
633
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['restMethod'], null, null, null);
|
|
634
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
635
|
+
return callback(null, errorObj);
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
/* HERE IS WHERE YOU SET THE DATA TO PASS INTO REQUEST */
|
|
639
|
+
// remove any leading / and split the uripath into path variables
|
|
640
|
+
let myPath = uriPath;
|
|
641
|
+
while (myPath.indexOf('/') === 0) {
|
|
642
|
+
myPath = myPath.substring(1);
|
|
643
|
+
}
|
|
644
|
+
const pathVars = myPath.split('/');
|
|
645
|
+
const queryParamsAvailable = queryData;
|
|
646
|
+
const queryParams = {};
|
|
647
|
+
const bodyVars = requestBody;
|
|
648
|
+
|
|
649
|
+
// loop in template. long callback arg name to avoid identifier conflicts
|
|
650
|
+
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
651
|
+
if (queryParamsAvailable[thisKeyInQueryParamsAvailable] !== undefined && queryParamsAvailable[thisKeyInQueryParamsAvailable] !== null
|
|
652
|
+
&& queryParamsAvailable[thisKeyInQueryParamsAvailable] !== '') {
|
|
653
|
+
queryParams[thisKeyInQueryParamsAvailable] = queryParamsAvailable[thisKeyInQueryParamsAvailable];
|
|
654
|
+
}
|
|
655
|
+
});
|
|
656
|
+
|
|
657
|
+
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
658
|
+
const reqObj = {
|
|
659
|
+
payload: bodyVars,
|
|
660
|
+
uriPathVars: pathVars,
|
|
661
|
+
uriQuery: queryParams,
|
|
662
|
+
uriOptions: {}
|
|
663
|
+
};
|
|
664
|
+
// add headers if provided
|
|
665
|
+
if (addlHeaders) {
|
|
666
|
+
reqObj.addlHeaders = addlHeaders;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
// determine the call and return flag
|
|
670
|
+
let action = 'getGenerics';
|
|
671
|
+
let returnF = true;
|
|
672
|
+
if (restMethod.toUpperCase() === 'POST') {
|
|
673
|
+
action = 'createGeneric';
|
|
674
|
+
} else if (restMethod.toUpperCase() === 'PUT') {
|
|
675
|
+
action = 'updateGeneric';
|
|
676
|
+
} else if (restMethod.toUpperCase() === 'PATCH') {
|
|
677
|
+
action = 'patchGeneric';
|
|
678
|
+
} else if (restMethod.toUpperCase() === 'DELETE') {
|
|
679
|
+
action = 'deleteGeneric';
|
|
680
|
+
returnF = false;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
try {
|
|
684
|
+
// Make the call -
|
|
685
|
+
// identifyRequest(entity, action, requestObj, returnDataFlag, callback)
|
|
686
|
+
return this.requestHandlerInst.identifyRequest('.generic', action, reqObj, returnF, (irReturnData, irReturnError) => {
|
|
687
|
+
// if we received an error or their is no response on the results
|
|
688
|
+
// return an error
|
|
689
|
+
if (irReturnError) {
|
|
690
|
+
/* HERE IS WHERE YOU CAN ALTER THE ERROR MESSAGE */
|
|
691
|
+
return callback(null, irReturnError);
|
|
692
|
+
}
|
|
693
|
+
if (!Object.hasOwnProperty.call(irReturnData, 'response')) {
|
|
694
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Invalid Response', ['genericAdapterRequest'], null, null, null);
|
|
695
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
696
|
+
return callback(null, errorObj);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
/* HERE IS WHERE YOU CAN ALTER THE RETURN DATA */
|
|
700
|
+
// return the response
|
|
701
|
+
return callback(irReturnData, null);
|
|
702
|
+
});
|
|
703
|
+
} catch (ex) {
|
|
704
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, ex);
|
|
705
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
706
|
+
return callback(null, errorObj);
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
/**
|
|
711
|
+
* Makes the requested generic call with no base path or version
|
|
712
|
+
*
|
|
713
|
+
* @function genericAdapterRequestNoBasePath
|
|
714
|
+
* @param {String} uriPath - the path of the api call - do not include the host, port, base path or version (required)
|
|
715
|
+
* @param {String} restMethod - the rest method (GET, POST, PUT, PATCH, DELETE) (required)
|
|
716
|
+
* @param {Object} queryData - the parameters to be put on the url (optional).
|
|
717
|
+
* Can be a stringified Object.
|
|
718
|
+
* @param {Object} requestBody - the body to add to the request (optional).
|
|
719
|
+
* Can be a stringified Object.
|
|
720
|
+
* @param {Object} addlHeaders - additional headers to be put on the call (optional).
|
|
721
|
+
* Can be a stringified Object.
|
|
722
|
+
* @param {getCallback} callback - a callback function to return the result (Generics)
|
|
723
|
+
* or the error
|
|
724
|
+
*/
|
|
725
|
+
genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback) {
|
|
726
|
+
const meth = 'adapter-genericAdapterRequestNoBasePath';
|
|
727
|
+
const origin = `${this.id}-${meth}`;
|
|
728
|
+
log.trace(origin);
|
|
729
|
+
|
|
730
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
731
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
732
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
733
|
+
return callback(null, errorObj);
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
737
|
+
if (uriPath === undefined || uriPath === null || uriPath === '') {
|
|
738
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['uriPath'], null, null, null);
|
|
739
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
740
|
+
return callback(null, errorObj);
|
|
741
|
+
}
|
|
742
|
+
if (restMethod === undefined || restMethod === null || restMethod === '') {
|
|
743
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['restMethod'], null, null, null);
|
|
744
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
745
|
+
return callback(null, errorObj);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
/* HERE IS WHERE YOU SET THE DATA TO PASS INTO REQUEST */
|
|
749
|
+
// remove any leading / and split the uripath into path variables
|
|
750
|
+
let myPath = uriPath;
|
|
751
|
+
while (myPath.indexOf('/') === 0) {
|
|
752
|
+
myPath = myPath.substring(1);
|
|
753
|
+
}
|
|
754
|
+
const pathVars = myPath.split('/');
|
|
755
|
+
const queryParamsAvailable = queryData;
|
|
756
|
+
const queryParams = {};
|
|
757
|
+
const bodyVars = requestBody;
|
|
758
|
+
|
|
759
|
+
// loop in template. long callback arg name to avoid identifier conflicts
|
|
760
|
+
Object.keys(queryParamsAvailable).forEach((thisKeyInQueryParamsAvailable) => {
|
|
761
|
+
if (queryParamsAvailable[thisKeyInQueryParamsAvailable] !== undefined && queryParamsAvailable[thisKeyInQueryParamsAvailable] !== null
|
|
762
|
+
&& queryParamsAvailable[thisKeyInQueryParamsAvailable] !== '') {
|
|
763
|
+
queryParams[thisKeyInQueryParamsAvailable] = queryParamsAvailable[thisKeyInQueryParamsAvailable];
|
|
764
|
+
}
|
|
765
|
+
});
|
|
766
|
+
|
|
767
|
+
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
768
|
+
const reqObj = {
|
|
769
|
+
payload: bodyVars,
|
|
770
|
+
uriPathVars: pathVars,
|
|
771
|
+
uriQuery: queryParams,
|
|
772
|
+
uriOptions: {}
|
|
773
|
+
};
|
|
774
|
+
// add headers if provided
|
|
775
|
+
if (addlHeaders) {
|
|
776
|
+
reqObj.addlHeaders = addlHeaders;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
// determine the call and return flag
|
|
780
|
+
let action = 'getGenericsNoBase';
|
|
781
|
+
let returnF = true;
|
|
782
|
+
if (restMethod.toUpperCase() === 'POST') {
|
|
783
|
+
action = 'createGenericNoBase';
|
|
784
|
+
} else if (restMethod.toUpperCase() === 'PUT') {
|
|
785
|
+
action = 'updateGenericNoBase';
|
|
786
|
+
} else if (restMethod.toUpperCase() === 'PATCH') {
|
|
787
|
+
action = 'patchGenericNoBase';
|
|
788
|
+
} else if (restMethod.toUpperCase() === 'DELETE') {
|
|
789
|
+
action = 'deleteGenericNoBase';
|
|
790
|
+
returnF = false;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
try {
|
|
794
|
+
// Make the call -
|
|
795
|
+
// identifyRequest(entity, action, requestObj, returnDataFlag, callback)
|
|
796
|
+
return this.requestHandlerInst.identifyRequest('.generic', action, reqObj, returnF, (irReturnData, irReturnError) => {
|
|
797
|
+
// if we received an error or their is no response on the results
|
|
798
|
+
// return an error
|
|
799
|
+
if (irReturnError) {
|
|
800
|
+
/* HERE IS WHERE YOU CAN ALTER THE ERROR MESSAGE */
|
|
801
|
+
return callback(null, irReturnError);
|
|
802
|
+
}
|
|
803
|
+
if (!Object.hasOwnProperty.call(irReturnData, 'response')) {
|
|
804
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Invalid Response', ['genericAdapterRequestNoBasePath'], null, null, null);
|
|
805
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
806
|
+
return callback(null, errorObj);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
/* HERE IS WHERE YOU CAN ALTER THE RETURN DATA */
|
|
810
|
+
// return the response
|
|
811
|
+
return callback(irReturnData, null);
|
|
812
|
+
});
|
|
813
|
+
} catch (ex) {
|
|
814
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, ex);
|
|
815
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
816
|
+
return callback(null, errorObj);
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
/**
|
|
821
|
+
* @callback healthCallback
|
|
822
|
+
* @param {Object} result - the result of the get request (contains an id and a status)
|
|
823
|
+
*/
|
|
824
|
+
/**
|
|
825
|
+
* @callback getCallback
|
|
826
|
+
* @param {Object} result - the result of the get request (entity/ies)
|
|
827
|
+
* @param {String} error - any error that occurred
|
|
828
|
+
*/
|
|
829
|
+
/**
|
|
830
|
+
* @callback createCallback
|
|
831
|
+
* @param {Object} item - the newly created entity
|
|
832
|
+
* @param {String} error - any error that occurred
|
|
833
|
+
*/
|
|
834
|
+
/**
|
|
835
|
+
* @callback updateCallback
|
|
836
|
+
* @param {String} status - the status of the update action
|
|
837
|
+
* @param {String} error - any error that occurred
|
|
838
|
+
*/
|
|
839
|
+
/**
|
|
840
|
+
* @callback deleteCallback
|
|
841
|
+
* @param {String} status - the status of the delete action
|
|
842
|
+
* @param {String} error - any error that occurred
|
|
843
|
+
*/
|
|
844
|
+
|
|
293
845
|
/**
|
|
294
846
|
* @summary login
|
|
295
847
|
*
|
|
@@ -303,6 +855,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
303
855
|
const origin = `${this.id}-${meth}`;
|
|
304
856
|
log.trace(origin);
|
|
305
857
|
|
|
858
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
859
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
860
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
861
|
+
return callback(null, errorObj);
|
|
862
|
+
}
|
|
863
|
+
|
|
306
864
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
307
865
|
if (body === undefined || body === null || body === '') {
|
|
308
866
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -371,6 +929,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
371
929
|
const origin = `${this.id}-${meth}`;
|
|
372
930
|
log.trace(origin);
|
|
373
931
|
|
|
932
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
933
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
934
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
935
|
+
return callback(null, errorObj);
|
|
936
|
+
}
|
|
937
|
+
|
|
374
938
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
375
939
|
if (body === undefined || body === null || body === '') {
|
|
376
940
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -456,6 +1020,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
456
1020
|
const origin = `${this.id}-${meth}`;
|
|
457
1021
|
log.trace(origin);
|
|
458
1022
|
|
|
1023
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1024
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1025
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1026
|
+
return callback(null, errorObj);
|
|
1027
|
+
}
|
|
1028
|
+
|
|
459
1029
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
460
1030
|
if (body === undefined || body === null || body === '') {
|
|
461
1031
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -541,6 +1111,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
541
1111
|
const origin = `${this.id}-${meth}`;
|
|
542
1112
|
log.trace(origin);
|
|
543
1113
|
|
|
1114
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1115
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1116
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1117
|
+
return callback(null, errorObj);
|
|
1118
|
+
}
|
|
1119
|
+
|
|
544
1120
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
545
1121
|
if (body === undefined || body === null || body === '') {
|
|
546
1122
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -626,6 +1202,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
626
1202
|
const origin = `${this.id}-${meth}`;
|
|
627
1203
|
log.trace(origin);
|
|
628
1204
|
|
|
1205
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1206
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1207
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1208
|
+
return callback(null, errorObj);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
629
1211
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
630
1212
|
if (body === undefined || body === null || body === '') {
|
|
631
1213
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -711,6 +1293,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
711
1293
|
const origin = `${this.id}-${meth}`;
|
|
712
1294
|
log.trace(origin);
|
|
713
1295
|
|
|
1296
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1297
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1298
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1299
|
+
return callback(null, errorObj);
|
|
1300
|
+
}
|
|
1301
|
+
|
|
714
1302
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
715
1303
|
if (body === undefined || body === null || body === '') {
|
|
716
1304
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -796,6 +1384,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
796
1384
|
const origin = `${this.id}-${meth}`;
|
|
797
1385
|
log.trace(origin);
|
|
798
1386
|
|
|
1387
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1388
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1389
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1390
|
+
return callback(null, errorObj);
|
|
1391
|
+
}
|
|
1392
|
+
|
|
799
1393
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
800
1394
|
if (body === undefined || body === null || body === '') {
|
|
801
1395
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -881,6 +1475,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
881
1475
|
const origin = `${this.id}-${meth}`;
|
|
882
1476
|
log.trace(origin);
|
|
883
1477
|
|
|
1478
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1479
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1480
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1481
|
+
return callback(null, errorObj);
|
|
1482
|
+
}
|
|
1483
|
+
|
|
884
1484
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
885
1485
|
if (body === undefined || body === null || body === '') {
|
|
886
1486
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -966,6 +1566,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
966
1566
|
const origin = `${this.id}-${meth}`;
|
|
967
1567
|
log.trace(origin);
|
|
968
1568
|
|
|
1569
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1570
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1571
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1572
|
+
return callback(null, errorObj);
|
|
1573
|
+
}
|
|
1574
|
+
|
|
969
1575
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
970
1576
|
if (body === undefined || body === null || body === '') {
|
|
971
1577
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1051,6 +1657,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1051
1657
|
const origin = `${this.id}-${meth}`;
|
|
1052
1658
|
log.trace(origin);
|
|
1053
1659
|
|
|
1660
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1661
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1662
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1663
|
+
return callback(null, errorObj);
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1054
1666
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1055
1667
|
if (body === undefined || body === null || body === '') {
|
|
1056
1668
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1136,6 +1748,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1136
1748
|
const origin = `${this.id}-${meth}`;
|
|
1137
1749
|
log.trace(origin);
|
|
1138
1750
|
|
|
1751
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1752
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1753
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1754
|
+
return callback(null, errorObj);
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1139
1757
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1140
1758
|
if (body === undefined || body === null || body === '') {
|
|
1141
1759
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1221,6 +1839,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1221
1839
|
const origin = `${this.id}-${meth}`;
|
|
1222
1840
|
log.trace(origin);
|
|
1223
1841
|
|
|
1842
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1843
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1844
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1845
|
+
return callback(null, errorObj);
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1224
1848
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1225
1849
|
if (body === undefined || body === null || body === '') {
|
|
1226
1850
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1306,6 +1930,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1306
1930
|
const origin = `${this.id}-${meth}`;
|
|
1307
1931
|
log.trace(origin);
|
|
1308
1932
|
|
|
1933
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
1934
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
1935
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
1936
|
+
return callback(null, errorObj);
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1309
1939
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1310
1940
|
if (body === undefined || body === null || body === '') {
|
|
1311
1941
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1391,6 +2021,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1391
2021
|
const origin = `${this.id}-${meth}`;
|
|
1392
2022
|
log.trace(origin);
|
|
1393
2023
|
|
|
2024
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2025
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2026
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2027
|
+
return callback(null, errorObj);
|
|
2028
|
+
}
|
|
2029
|
+
|
|
1394
2030
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1395
2031
|
if (body === undefined || body === null || body === '') {
|
|
1396
2032
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1476,6 +2112,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1476
2112
|
const origin = `${this.id}-${meth}`;
|
|
1477
2113
|
log.trace(origin);
|
|
1478
2114
|
|
|
2115
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2116
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2117
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2118
|
+
return callback(null, errorObj);
|
|
2119
|
+
}
|
|
2120
|
+
|
|
1479
2121
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1480
2122
|
if (body === undefined || body === null || body === '') {
|
|
1481
2123
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1561,6 +2203,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1561
2203
|
const origin = `${this.id}-${meth}`;
|
|
1562
2204
|
log.trace(origin);
|
|
1563
2205
|
|
|
2206
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2207
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2208
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2209
|
+
return callback(null, errorObj);
|
|
2210
|
+
}
|
|
2211
|
+
|
|
1564
2212
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1565
2213
|
if (body === undefined || body === null || body === '') {
|
|
1566
2214
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1646,6 +2294,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1646
2294
|
const origin = `${this.id}-${meth}`;
|
|
1647
2295
|
log.trace(origin);
|
|
1648
2296
|
|
|
2297
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2298
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2299
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2300
|
+
return callback(null, errorObj);
|
|
2301
|
+
}
|
|
2302
|
+
|
|
1649
2303
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1650
2304
|
if (body === undefined || body === null || body === '') {
|
|
1651
2305
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1731,6 +2385,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1731
2385
|
const origin = `${this.id}-${meth}`;
|
|
1732
2386
|
log.trace(origin);
|
|
1733
2387
|
|
|
2388
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2389
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2390
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2391
|
+
return callback(null, errorObj);
|
|
2392
|
+
}
|
|
2393
|
+
|
|
1734
2394
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1735
2395
|
if (body === undefined || body === null || body === '') {
|
|
1736
2396
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1816,6 +2476,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1816
2476
|
const origin = `${this.id}-${meth}`;
|
|
1817
2477
|
log.trace(origin);
|
|
1818
2478
|
|
|
2479
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2480
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2481
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2482
|
+
return callback(null, errorObj);
|
|
2483
|
+
}
|
|
2484
|
+
|
|
1819
2485
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1820
2486
|
if (body === undefined || body === null || body === '') {
|
|
1821
2487
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1901,6 +2567,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1901
2567
|
const origin = `${this.id}-${meth}`;
|
|
1902
2568
|
log.trace(origin);
|
|
1903
2569
|
|
|
2570
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2571
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2572
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2573
|
+
return callback(null, errorObj);
|
|
2574
|
+
}
|
|
2575
|
+
|
|
1904
2576
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1905
2577
|
if (body === undefined || body === null || body === '') {
|
|
1906
2578
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -1986,6 +2658,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
1986
2658
|
const origin = `${this.id}-${meth}`;
|
|
1987
2659
|
log.trace(origin);
|
|
1988
2660
|
|
|
2661
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2662
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2663
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2664
|
+
return callback(null, errorObj);
|
|
2665
|
+
}
|
|
2666
|
+
|
|
1989
2667
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
1990
2668
|
if (body === undefined || body === null || body === '') {
|
|
1991
2669
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2071,6 +2749,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2071
2749
|
const origin = `${this.id}-${meth}`;
|
|
2072
2750
|
log.trace(origin);
|
|
2073
2751
|
|
|
2752
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2753
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2754
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2755
|
+
return callback(null, errorObj);
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2074
2758
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2075
2759
|
if (body === undefined || body === null || body === '') {
|
|
2076
2760
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2156,6 +2840,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2156
2840
|
const origin = `${this.id}-${meth}`;
|
|
2157
2841
|
log.trace(origin);
|
|
2158
2842
|
|
|
2843
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2844
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2845
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2846
|
+
return callback(null, errorObj);
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2159
2849
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2160
2850
|
if (body === undefined || body === null || body === '') {
|
|
2161
2851
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2241,6 +2931,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2241
2931
|
const origin = `${this.id}-${meth}`;
|
|
2242
2932
|
log.trace(origin);
|
|
2243
2933
|
|
|
2934
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
2935
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
2936
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
2937
|
+
return callback(null, errorObj);
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2244
2940
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2245
2941
|
if (body === undefined || body === null || body === '') {
|
|
2246
2942
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2326,6 +3022,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2326
3022
|
const origin = `${this.id}-${meth}`;
|
|
2327
3023
|
log.trace(origin);
|
|
2328
3024
|
|
|
3025
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3026
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3027
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3028
|
+
return callback(null, errorObj);
|
|
3029
|
+
}
|
|
3030
|
+
|
|
2329
3031
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2330
3032
|
if (body === undefined || body === null || body === '') {
|
|
2331
3033
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2411,6 +3113,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2411
3113
|
const origin = `${this.id}-${meth}`;
|
|
2412
3114
|
log.trace(origin);
|
|
2413
3115
|
|
|
3116
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3117
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3118
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3119
|
+
return callback(null, errorObj);
|
|
3120
|
+
}
|
|
3121
|
+
|
|
2414
3122
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2415
3123
|
if (body === undefined || body === null || body === '') {
|
|
2416
3124
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2496,6 +3204,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2496
3204
|
const origin = `${this.id}-${meth}`;
|
|
2497
3205
|
log.trace(origin);
|
|
2498
3206
|
|
|
3207
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3208
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3209
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3210
|
+
return callback(null, errorObj);
|
|
3211
|
+
}
|
|
3212
|
+
|
|
2499
3213
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2500
3214
|
if (body === undefined || body === null || body === '') {
|
|
2501
3215
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2581,6 +3295,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2581
3295
|
const origin = `${this.id}-${meth}`;
|
|
2582
3296
|
log.trace(origin);
|
|
2583
3297
|
|
|
3298
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3299
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3300
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3301
|
+
return callback(null, errorObj);
|
|
3302
|
+
}
|
|
3303
|
+
|
|
2584
3304
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2585
3305
|
if (body === undefined || body === null || body === '') {
|
|
2586
3306
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2666,6 +3386,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2666
3386
|
const origin = `${this.id}-${meth}`;
|
|
2667
3387
|
log.trace(origin);
|
|
2668
3388
|
|
|
3389
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3390
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3391
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3392
|
+
return callback(null, errorObj);
|
|
3393
|
+
}
|
|
3394
|
+
|
|
2669
3395
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2670
3396
|
if (body === undefined || body === null || body === '') {
|
|
2671
3397
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2751,6 +3477,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2751
3477
|
const origin = `${this.id}-${meth}`;
|
|
2752
3478
|
log.trace(origin);
|
|
2753
3479
|
|
|
3480
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3481
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3482
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3483
|
+
return callback(null, errorObj);
|
|
3484
|
+
}
|
|
3485
|
+
|
|
2754
3486
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2755
3487
|
if (body === undefined || body === null || body === '') {
|
|
2756
3488
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2836,6 +3568,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2836
3568
|
const origin = `${this.id}-${meth}`;
|
|
2837
3569
|
log.trace(origin);
|
|
2838
3570
|
|
|
3571
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3572
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3573
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3574
|
+
return callback(null, errorObj);
|
|
3575
|
+
}
|
|
3576
|
+
|
|
2839
3577
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2840
3578
|
if (body === undefined || body === null || body === '') {
|
|
2841
3579
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -2921,6 +3659,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
2921
3659
|
const origin = `${this.id}-${meth}`;
|
|
2922
3660
|
log.trace(origin);
|
|
2923
3661
|
|
|
3662
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3663
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3664
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3665
|
+
return callback(null, errorObj);
|
|
3666
|
+
}
|
|
3667
|
+
|
|
2924
3668
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
2925
3669
|
if (body === undefined || body === null || body === '') {
|
|
2926
3670
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3006,6 +3750,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3006
3750
|
const origin = `${this.id}-${meth}`;
|
|
3007
3751
|
log.trace(origin);
|
|
3008
3752
|
|
|
3753
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3754
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3755
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3756
|
+
return callback(null, errorObj);
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3009
3759
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3010
3760
|
if (body === undefined || body === null || body === '') {
|
|
3011
3761
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3091,6 +3841,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3091
3841
|
const origin = `${this.id}-${meth}`;
|
|
3092
3842
|
log.trace(origin);
|
|
3093
3843
|
|
|
3844
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3845
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3846
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3847
|
+
return callback(null, errorObj);
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3094
3850
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3095
3851
|
if (body === undefined || body === null || body === '') {
|
|
3096
3852
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3176,6 +3932,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3176
3932
|
const origin = `${this.id}-${meth}`;
|
|
3177
3933
|
log.trace(origin);
|
|
3178
3934
|
|
|
3935
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
3936
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
3937
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
3938
|
+
return callback(null, errorObj);
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3179
3941
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3180
3942
|
if (body === undefined || body === null || body === '') {
|
|
3181
3943
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3261,6 +4023,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3261
4023
|
const origin = `${this.id}-${meth}`;
|
|
3262
4024
|
log.trace(origin);
|
|
3263
4025
|
|
|
4026
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4027
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4028
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4029
|
+
return callback(null, errorObj);
|
|
4030
|
+
}
|
|
4031
|
+
|
|
3264
4032
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3265
4033
|
if (body === undefined || body === null || body === '') {
|
|
3266
4034
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3346,6 +4114,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3346
4114
|
const origin = `${this.id}-${meth}`;
|
|
3347
4115
|
log.trace(origin);
|
|
3348
4116
|
|
|
4117
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4118
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4119
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4120
|
+
return callback(null, errorObj);
|
|
4121
|
+
}
|
|
4122
|
+
|
|
3349
4123
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3350
4124
|
if (body === undefined || body === null || body === '') {
|
|
3351
4125
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3431,6 +4205,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3431
4205
|
const origin = `${this.id}-${meth}`;
|
|
3432
4206
|
log.trace(origin);
|
|
3433
4207
|
|
|
4208
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4209
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4210
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4211
|
+
return callback(null, errorObj);
|
|
4212
|
+
}
|
|
4213
|
+
|
|
3434
4214
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3435
4215
|
if (body === undefined || body === null || body === '') {
|
|
3436
4216
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3516,6 +4296,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3516
4296
|
const origin = `${this.id}-${meth}`;
|
|
3517
4297
|
log.trace(origin);
|
|
3518
4298
|
|
|
4299
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4300
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4301
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4302
|
+
return callback(null, errorObj);
|
|
4303
|
+
}
|
|
4304
|
+
|
|
3519
4305
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3520
4306
|
if (body === undefined || body === null || body === '') {
|
|
3521
4307
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3601,6 +4387,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3601
4387
|
const origin = `${this.id}-${meth}`;
|
|
3602
4388
|
log.trace(origin);
|
|
3603
4389
|
|
|
4390
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4391
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4392
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4393
|
+
return callback(null, errorObj);
|
|
4394
|
+
}
|
|
4395
|
+
|
|
3604
4396
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3605
4397
|
if (body === undefined || body === null || body === '') {
|
|
3606
4398
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3686,6 +4478,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3686
4478
|
const origin = `${this.id}-${meth}`;
|
|
3687
4479
|
log.trace(origin);
|
|
3688
4480
|
|
|
4481
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4482
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4483
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4484
|
+
return callback(null, errorObj);
|
|
4485
|
+
}
|
|
4486
|
+
|
|
3689
4487
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3690
4488
|
if (body === undefined || body === null || body === '') {
|
|
3691
4489
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3771,6 +4569,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3771
4569
|
const origin = `${this.id}-${meth}`;
|
|
3772
4570
|
log.trace(origin);
|
|
3773
4571
|
|
|
4572
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4573
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4574
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4575
|
+
return callback(null, errorObj);
|
|
4576
|
+
}
|
|
4577
|
+
|
|
3774
4578
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3775
4579
|
if (body === undefined || body === null || body === '') {
|
|
3776
4580
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3856,6 +4660,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3856
4660
|
const origin = `${this.id}-${meth}`;
|
|
3857
4661
|
log.trace(origin);
|
|
3858
4662
|
|
|
4663
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4664
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4665
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4666
|
+
return callback(null, errorObj);
|
|
4667
|
+
}
|
|
4668
|
+
|
|
3859
4669
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3860
4670
|
if (body === undefined || body === null || body === '') {
|
|
3861
4671
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -3941,6 +4751,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
3941
4751
|
const origin = `${this.id}-${meth}`;
|
|
3942
4752
|
log.trace(origin);
|
|
3943
4753
|
|
|
4754
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4755
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4756
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4757
|
+
return callback(null, errorObj);
|
|
4758
|
+
}
|
|
4759
|
+
|
|
3944
4760
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
3945
4761
|
if (body === undefined || body === null || body === '') {
|
|
3946
4762
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4026,6 +4842,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4026
4842
|
const origin = `${this.id}-${meth}`;
|
|
4027
4843
|
log.trace(origin);
|
|
4028
4844
|
|
|
4845
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4846
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4847
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4848
|
+
return callback(null, errorObj);
|
|
4849
|
+
}
|
|
4850
|
+
|
|
4029
4851
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4030
4852
|
if (body === undefined || body === null || body === '') {
|
|
4031
4853
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4111,6 +4933,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4111
4933
|
const origin = `${this.id}-${meth}`;
|
|
4112
4934
|
log.trace(origin);
|
|
4113
4935
|
|
|
4936
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
4937
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
4938
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
4939
|
+
return callback(null, errorObj);
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4114
4942
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4115
4943
|
if (body === undefined || body === null || body === '') {
|
|
4116
4944
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4196,6 +5024,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4196
5024
|
const origin = `${this.id}-${meth}`;
|
|
4197
5025
|
log.trace(origin);
|
|
4198
5026
|
|
|
5027
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5028
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5029
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5030
|
+
return callback(null, errorObj);
|
|
5031
|
+
}
|
|
5032
|
+
|
|
4199
5033
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4200
5034
|
if (body === undefined || body === null || body === '') {
|
|
4201
5035
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4281,6 +5115,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4281
5115
|
const origin = `${this.id}-${meth}`;
|
|
4282
5116
|
log.trace(origin);
|
|
4283
5117
|
|
|
5118
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5119
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5120
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5121
|
+
return callback(null, errorObj);
|
|
5122
|
+
}
|
|
5123
|
+
|
|
4284
5124
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4285
5125
|
if (body === undefined || body === null || body === '') {
|
|
4286
5126
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4366,6 +5206,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4366
5206
|
const origin = `${this.id}-${meth}`;
|
|
4367
5207
|
log.trace(origin);
|
|
4368
5208
|
|
|
5209
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5210
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5211
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5212
|
+
return callback(null, errorObj);
|
|
5213
|
+
}
|
|
5214
|
+
|
|
4369
5215
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4370
5216
|
if (body === undefined || body === null || body === '') {
|
|
4371
5217
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4451,6 +5297,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4451
5297
|
const origin = `${this.id}-${meth}`;
|
|
4452
5298
|
log.trace(origin);
|
|
4453
5299
|
|
|
5300
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5301
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5302
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5303
|
+
return callback(null, errorObj);
|
|
5304
|
+
}
|
|
5305
|
+
|
|
4454
5306
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4455
5307
|
if (body === undefined || body === null || body === '') {
|
|
4456
5308
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4536,6 +5388,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4536
5388
|
const origin = `${this.id}-${meth}`;
|
|
4537
5389
|
log.trace(origin);
|
|
4538
5390
|
|
|
5391
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5392
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5393
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5394
|
+
return callback(null, errorObj);
|
|
5395
|
+
}
|
|
5396
|
+
|
|
4539
5397
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4540
5398
|
if (body === undefined || body === null || body === '') {
|
|
4541
5399
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4621,6 +5479,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4621
5479
|
const origin = `${this.id}-${meth}`;
|
|
4622
5480
|
log.trace(origin);
|
|
4623
5481
|
|
|
5482
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5483
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5484
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5485
|
+
return callback(null, errorObj);
|
|
5486
|
+
}
|
|
5487
|
+
|
|
4624
5488
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4625
5489
|
if (body === undefined || body === null || body === '') {
|
|
4626
5490
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4706,6 +5570,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4706
5570
|
const origin = `${this.id}-${meth}`;
|
|
4707
5571
|
log.trace(origin);
|
|
4708
5572
|
|
|
5573
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5574
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5575
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5576
|
+
return callback(null, errorObj);
|
|
5577
|
+
}
|
|
5578
|
+
|
|
4709
5579
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4710
5580
|
if (body === undefined || body === null || body === '') {
|
|
4711
5581
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4791,6 +5661,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4791
5661
|
const origin = `${this.id}-${meth}`;
|
|
4792
5662
|
log.trace(origin);
|
|
4793
5663
|
|
|
5664
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5665
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5666
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5667
|
+
return callback(null, errorObj);
|
|
5668
|
+
}
|
|
5669
|
+
|
|
4794
5670
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4795
5671
|
if (body === undefined || body === null || body === '') {
|
|
4796
5672
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4876,6 +5752,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4876
5752
|
const origin = `${this.id}-${meth}`;
|
|
4877
5753
|
log.trace(origin);
|
|
4878
5754
|
|
|
5755
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5756
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5757
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5758
|
+
return callback(null, errorObj);
|
|
5759
|
+
}
|
|
5760
|
+
|
|
4879
5761
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4880
5762
|
if (body === undefined || body === null || body === '') {
|
|
4881
5763
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -4961,6 +5843,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
4961
5843
|
const origin = `${this.id}-${meth}`;
|
|
4962
5844
|
log.trace(origin);
|
|
4963
5845
|
|
|
5846
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5847
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5848
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5849
|
+
return callback(null, errorObj);
|
|
5850
|
+
}
|
|
5851
|
+
|
|
4964
5852
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
4965
5853
|
if (body === undefined || body === null || body === '') {
|
|
4966
5854
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5046,6 +5934,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5046
5934
|
const origin = `${this.id}-${meth}`;
|
|
5047
5935
|
log.trace(origin);
|
|
5048
5936
|
|
|
5937
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
5938
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
5939
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
5940
|
+
return callback(null, errorObj);
|
|
5941
|
+
}
|
|
5942
|
+
|
|
5049
5943
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5050
5944
|
if (body === undefined || body === null || body === '') {
|
|
5051
5945
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5131,6 +6025,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5131
6025
|
const origin = `${this.id}-${meth}`;
|
|
5132
6026
|
log.trace(origin);
|
|
5133
6027
|
|
|
6028
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6029
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6030
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6031
|
+
return callback(null, errorObj);
|
|
6032
|
+
}
|
|
6033
|
+
|
|
5134
6034
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5135
6035
|
if (body === undefined || body === null || body === '') {
|
|
5136
6036
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5216,6 +6116,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5216
6116
|
const origin = `${this.id}-${meth}`;
|
|
5217
6117
|
log.trace(origin);
|
|
5218
6118
|
|
|
6119
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6120
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6121
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6122
|
+
return callback(null, errorObj);
|
|
6123
|
+
}
|
|
6124
|
+
|
|
5219
6125
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5220
6126
|
if (body === undefined || body === null || body === '') {
|
|
5221
6127
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5301,6 +6207,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5301
6207
|
const origin = `${this.id}-${meth}`;
|
|
5302
6208
|
log.trace(origin);
|
|
5303
6209
|
|
|
6210
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6211
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6212
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6213
|
+
return callback(null, errorObj);
|
|
6214
|
+
}
|
|
6215
|
+
|
|
5304
6216
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5305
6217
|
if (body === undefined || body === null || body === '') {
|
|
5306
6218
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5386,6 +6298,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5386
6298
|
const origin = `${this.id}-${meth}`;
|
|
5387
6299
|
log.trace(origin);
|
|
5388
6300
|
|
|
6301
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6302
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6303
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6304
|
+
return callback(null, errorObj);
|
|
6305
|
+
}
|
|
6306
|
+
|
|
5389
6307
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5390
6308
|
if (body === undefined || body === null || body === '') {
|
|
5391
6309
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5471,6 +6389,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5471
6389
|
const origin = `${this.id}-${meth}`;
|
|
5472
6390
|
log.trace(origin);
|
|
5473
6391
|
|
|
6392
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6393
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6394
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6395
|
+
return callback(null, errorObj);
|
|
6396
|
+
}
|
|
6397
|
+
|
|
5474
6398
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5475
6399
|
if (body === undefined || body === null || body === '') {
|
|
5476
6400
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5556,6 +6480,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5556
6480
|
const origin = `${this.id}-${meth}`;
|
|
5557
6481
|
log.trace(origin);
|
|
5558
6482
|
|
|
6483
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6484
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6485
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6486
|
+
return callback(null, errorObj);
|
|
6487
|
+
}
|
|
6488
|
+
|
|
5559
6489
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5560
6490
|
if (body === undefined || body === null || body === '') {
|
|
5561
6491
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5641,6 +6571,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5641
6571
|
const origin = `${this.id}-${meth}`;
|
|
5642
6572
|
log.trace(origin);
|
|
5643
6573
|
|
|
6574
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6575
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6576
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6577
|
+
return callback(null, errorObj);
|
|
6578
|
+
}
|
|
6579
|
+
|
|
5644
6580
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5645
6581
|
if (body === undefined || body === null || body === '') {
|
|
5646
6582
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5726,6 +6662,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5726
6662
|
const origin = `${this.id}-${meth}`;
|
|
5727
6663
|
log.trace(origin);
|
|
5728
6664
|
|
|
6665
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6666
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6667
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6668
|
+
return callback(null, errorObj);
|
|
6669
|
+
}
|
|
6670
|
+
|
|
5729
6671
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5730
6672
|
if (body === undefined || body === null || body === '') {
|
|
5731
6673
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5811,6 +6753,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5811
6753
|
const origin = `${this.id}-${meth}`;
|
|
5812
6754
|
log.trace(origin);
|
|
5813
6755
|
|
|
6756
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6757
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6758
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6759
|
+
return callback(null, errorObj);
|
|
6760
|
+
}
|
|
6761
|
+
|
|
5814
6762
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5815
6763
|
if (body === undefined || body === null || body === '') {
|
|
5816
6764
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5896,6 +6844,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5896
6844
|
const origin = `${this.id}-${meth}`;
|
|
5897
6845
|
log.trace(origin);
|
|
5898
6846
|
|
|
6847
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6848
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6849
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6850
|
+
return callback(null, errorObj);
|
|
6851
|
+
}
|
|
6852
|
+
|
|
5899
6853
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5900
6854
|
if (body === undefined || body === null || body === '') {
|
|
5901
6855
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -5981,6 +6935,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
5981
6935
|
const origin = `${this.id}-${meth}`;
|
|
5982
6936
|
log.trace(origin);
|
|
5983
6937
|
|
|
6938
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
6939
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
6940
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
6941
|
+
return callback(null, errorObj);
|
|
6942
|
+
}
|
|
6943
|
+
|
|
5984
6944
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
5985
6945
|
if (body === undefined || body === null || body === '') {
|
|
5986
6946
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6066,6 +7026,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6066
7026
|
const origin = `${this.id}-${meth}`;
|
|
6067
7027
|
log.trace(origin);
|
|
6068
7028
|
|
|
7029
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7030
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7031
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7032
|
+
return callback(null, errorObj);
|
|
7033
|
+
}
|
|
7034
|
+
|
|
6069
7035
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6070
7036
|
if (body === undefined || body === null || body === '') {
|
|
6071
7037
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6151,6 +7117,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6151
7117
|
const origin = `${this.id}-${meth}`;
|
|
6152
7118
|
log.trace(origin);
|
|
6153
7119
|
|
|
7120
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7121
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7122
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7123
|
+
return callback(null, errorObj);
|
|
7124
|
+
}
|
|
7125
|
+
|
|
6154
7126
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6155
7127
|
if (body === undefined || body === null || body === '') {
|
|
6156
7128
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6236,6 +7208,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6236
7208
|
const origin = `${this.id}-${meth}`;
|
|
6237
7209
|
log.trace(origin);
|
|
6238
7210
|
|
|
7211
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7212
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7213
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7214
|
+
return callback(null, errorObj);
|
|
7215
|
+
}
|
|
7216
|
+
|
|
6239
7217
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6240
7218
|
if (body === undefined || body === null || body === '') {
|
|
6241
7219
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6321,6 +7299,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6321
7299
|
const origin = `${this.id}-${meth}`;
|
|
6322
7300
|
log.trace(origin);
|
|
6323
7301
|
|
|
7302
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7303
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7304
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7305
|
+
return callback(null, errorObj);
|
|
7306
|
+
}
|
|
7307
|
+
|
|
6324
7308
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6325
7309
|
if (body === undefined || body === null || body === '') {
|
|
6326
7310
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6406,6 +7390,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6406
7390
|
const origin = `${this.id}-${meth}`;
|
|
6407
7391
|
log.trace(origin);
|
|
6408
7392
|
|
|
7393
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7394
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7395
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7396
|
+
return callback(null, errorObj);
|
|
7397
|
+
}
|
|
7398
|
+
|
|
6409
7399
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6410
7400
|
if (body === undefined || body === null || body === '') {
|
|
6411
7401
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6491,6 +7481,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6491
7481
|
const origin = `${this.id}-${meth}`;
|
|
6492
7482
|
log.trace(origin);
|
|
6493
7483
|
|
|
7484
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7485
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7486
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7487
|
+
return callback(null, errorObj);
|
|
7488
|
+
}
|
|
7489
|
+
|
|
6494
7490
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6495
7491
|
if (body === undefined || body === null || body === '') {
|
|
6496
7492
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6576,6 +7572,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6576
7572
|
const origin = `${this.id}-${meth}`;
|
|
6577
7573
|
log.trace(origin);
|
|
6578
7574
|
|
|
7575
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7576
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7577
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7578
|
+
return callback(null, errorObj);
|
|
7579
|
+
}
|
|
7580
|
+
|
|
6579
7581
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6580
7582
|
if (body === undefined || body === null || body === '') {
|
|
6581
7583
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6661,6 +7663,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6661
7663
|
const origin = `${this.id}-${meth}`;
|
|
6662
7664
|
log.trace(origin);
|
|
6663
7665
|
|
|
7666
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7667
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7668
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7669
|
+
return callback(null, errorObj);
|
|
7670
|
+
}
|
|
7671
|
+
|
|
6664
7672
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6665
7673
|
if (body === undefined || body === null || body === '') {
|
|
6666
7674
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6746,6 +7754,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6746
7754
|
const origin = `${this.id}-${meth}`;
|
|
6747
7755
|
log.trace(origin);
|
|
6748
7756
|
|
|
7757
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7758
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7759
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7760
|
+
return callback(null, errorObj);
|
|
7761
|
+
}
|
|
7762
|
+
|
|
6749
7763
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6750
7764
|
if (body === undefined || body === null || body === '') {
|
|
6751
7765
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6831,6 +7845,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6831
7845
|
const origin = `${this.id}-${meth}`;
|
|
6832
7846
|
log.trace(origin);
|
|
6833
7847
|
|
|
7848
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7849
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7850
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7851
|
+
return callback(null, errorObj);
|
|
7852
|
+
}
|
|
7853
|
+
|
|
6834
7854
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6835
7855
|
if (body === undefined || body === null || body === '') {
|
|
6836
7856
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -6916,6 +7936,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
6916
7936
|
const origin = `${this.id}-${meth}`;
|
|
6917
7937
|
log.trace(origin);
|
|
6918
7938
|
|
|
7939
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
7940
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
7941
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
7942
|
+
return callback(null, errorObj);
|
|
7943
|
+
}
|
|
7944
|
+
|
|
6919
7945
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
6920
7946
|
if (body === undefined || body === null || body === '') {
|
|
6921
7947
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7001,6 +8027,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7001
8027
|
const origin = `${this.id}-${meth}`;
|
|
7002
8028
|
log.trace(origin);
|
|
7003
8029
|
|
|
8030
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8031
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8032
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8033
|
+
return callback(null, errorObj);
|
|
8034
|
+
}
|
|
8035
|
+
|
|
7004
8036
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7005
8037
|
if (body === undefined || body === null || body === '') {
|
|
7006
8038
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7086,6 +8118,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7086
8118
|
const origin = `${this.id}-${meth}`;
|
|
7087
8119
|
log.trace(origin);
|
|
7088
8120
|
|
|
8121
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8122
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8123
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8124
|
+
return callback(null, errorObj);
|
|
8125
|
+
}
|
|
8126
|
+
|
|
7089
8127
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7090
8128
|
if (body === undefined || body === null || body === '') {
|
|
7091
8129
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7171,6 +8209,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7171
8209
|
const origin = `${this.id}-${meth}`;
|
|
7172
8210
|
log.trace(origin);
|
|
7173
8211
|
|
|
8212
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8213
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8214
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8215
|
+
return callback(null, errorObj);
|
|
8216
|
+
}
|
|
8217
|
+
|
|
7174
8218
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7175
8219
|
if (body === undefined || body === null || body === '') {
|
|
7176
8220
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7256,6 +8300,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7256
8300
|
const origin = `${this.id}-${meth}`;
|
|
7257
8301
|
log.trace(origin);
|
|
7258
8302
|
|
|
8303
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8304
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8305
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8306
|
+
return callback(null, errorObj);
|
|
8307
|
+
}
|
|
8308
|
+
|
|
7259
8309
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7260
8310
|
if (body === undefined || body === null || body === '') {
|
|
7261
8311
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7341,6 +8391,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7341
8391
|
const origin = `${this.id}-${meth}`;
|
|
7342
8392
|
log.trace(origin);
|
|
7343
8393
|
|
|
8394
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8395
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8396
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8397
|
+
return callback(null, errorObj);
|
|
8398
|
+
}
|
|
8399
|
+
|
|
7344
8400
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7345
8401
|
if (body === undefined || body === null || body === '') {
|
|
7346
8402
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7426,6 +8482,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7426
8482
|
const origin = `${this.id}-${meth}`;
|
|
7427
8483
|
log.trace(origin);
|
|
7428
8484
|
|
|
8485
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8486
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8487
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8488
|
+
return callback(null, errorObj);
|
|
8489
|
+
}
|
|
8490
|
+
|
|
7429
8491
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7430
8492
|
if (body === undefined || body === null || body === '') {
|
|
7431
8493
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7511,6 +8573,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7511
8573
|
const origin = `${this.id}-${meth}`;
|
|
7512
8574
|
log.trace(origin);
|
|
7513
8575
|
|
|
8576
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8577
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8578
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8579
|
+
return callback(null, errorObj);
|
|
8580
|
+
}
|
|
8581
|
+
|
|
7514
8582
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7515
8583
|
if (body === undefined || body === null || body === '') {
|
|
7516
8584
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7596,6 +8664,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7596
8664
|
const origin = `${this.id}-${meth}`;
|
|
7597
8665
|
log.trace(origin);
|
|
7598
8666
|
|
|
8667
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8668
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8669
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8670
|
+
return callback(null, errorObj);
|
|
8671
|
+
}
|
|
8672
|
+
|
|
7599
8673
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7600
8674
|
if (body === undefined || body === null || body === '') {
|
|
7601
8675
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7681,6 +8755,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7681
8755
|
const origin = `${this.id}-${meth}`;
|
|
7682
8756
|
log.trace(origin);
|
|
7683
8757
|
|
|
8758
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8759
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8760
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8761
|
+
return callback(null, errorObj);
|
|
8762
|
+
}
|
|
8763
|
+
|
|
7684
8764
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7685
8765
|
if (body === undefined || body === null || body === '') {
|
|
7686
8766
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7766,6 +8846,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7766
8846
|
const origin = `${this.id}-${meth}`;
|
|
7767
8847
|
log.trace(origin);
|
|
7768
8848
|
|
|
8849
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8850
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8851
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8852
|
+
return callback(null, errorObj);
|
|
8853
|
+
}
|
|
8854
|
+
|
|
7769
8855
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7770
8856
|
if (body === undefined || body === null || body === '') {
|
|
7771
8857
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7851,6 +8937,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7851
8937
|
const origin = `${this.id}-${meth}`;
|
|
7852
8938
|
log.trace(origin);
|
|
7853
8939
|
|
|
8940
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
8941
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
8942
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
8943
|
+
return callback(null, errorObj);
|
|
8944
|
+
}
|
|
8945
|
+
|
|
7854
8946
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7855
8947
|
if (body === undefined || body === null || body === '') {
|
|
7856
8948
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -7936,6 +9028,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
7936
9028
|
const origin = `${this.id}-${meth}`;
|
|
7937
9029
|
log.trace(origin);
|
|
7938
9030
|
|
|
9031
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9032
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9033
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9034
|
+
return callback(null, errorObj);
|
|
9035
|
+
}
|
|
9036
|
+
|
|
7939
9037
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
7940
9038
|
if (body === undefined || body === null || body === '') {
|
|
7941
9039
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8021,6 +9119,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8021
9119
|
const origin = `${this.id}-${meth}`;
|
|
8022
9120
|
log.trace(origin);
|
|
8023
9121
|
|
|
9122
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9123
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9124
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9125
|
+
return callback(null, errorObj);
|
|
9126
|
+
}
|
|
9127
|
+
|
|
8024
9128
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8025
9129
|
if (body === undefined || body === null || body === '') {
|
|
8026
9130
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8106,6 +9210,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8106
9210
|
const origin = `${this.id}-${meth}`;
|
|
8107
9211
|
log.trace(origin);
|
|
8108
9212
|
|
|
9213
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9214
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9215
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9216
|
+
return callback(null, errorObj);
|
|
9217
|
+
}
|
|
9218
|
+
|
|
8109
9219
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8110
9220
|
if (body === undefined || body === null || body === '') {
|
|
8111
9221
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8191,6 +9301,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8191
9301
|
const origin = `${this.id}-${meth}`;
|
|
8192
9302
|
log.trace(origin);
|
|
8193
9303
|
|
|
9304
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9305
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9306
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9307
|
+
return callback(null, errorObj);
|
|
9308
|
+
}
|
|
9309
|
+
|
|
8194
9310
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8195
9311
|
if (body === undefined || body === null || body === '') {
|
|
8196
9312
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8276,6 +9392,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8276
9392
|
const origin = `${this.id}-${meth}`;
|
|
8277
9393
|
log.trace(origin);
|
|
8278
9394
|
|
|
9395
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9396
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9397
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9398
|
+
return callback(null, errorObj);
|
|
9399
|
+
}
|
|
9400
|
+
|
|
8279
9401
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8280
9402
|
if (body === undefined || body === null || body === '') {
|
|
8281
9403
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8361,6 +9483,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8361
9483
|
const origin = `${this.id}-${meth}`;
|
|
8362
9484
|
log.trace(origin);
|
|
8363
9485
|
|
|
9486
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9487
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9488
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9489
|
+
return callback(null, errorObj);
|
|
9490
|
+
}
|
|
9491
|
+
|
|
8364
9492
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8365
9493
|
if (body === undefined || body === null || body === '') {
|
|
8366
9494
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8446,6 +9574,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8446
9574
|
const origin = `${this.id}-${meth}`;
|
|
8447
9575
|
log.trace(origin);
|
|
8448
9576
|
|
|
9577
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9578
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9579
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9580
|
+
return callback(null, errorObj);
|
|
9581
|
+
}
|
|
9582
|
+
|
|
8449
9583
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8450
9584
|
if (body === undefined || body === null || body === '') {
|
|
8451
9585
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8531,6 +9665,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8531
9665
|
const origin = `${this.id}-${meth}`;
|
|
8532
9666
|
log.trace(origin);
|
|
8533
9667
|
|
|
9668
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9669
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9670
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9671
|
+
return callback(null, errorObj);
|
|
9672
|
+
}
|
|
9673
|
+
|
|
8534
9674
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8535
9675
|
if (body === undefined || body === null || body === '') {
|
|
8536
9676
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8616,6 +9756,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8616
9756
|
const origin = `${this.id}-${meth}`;
|
|
8617
9757
|
log.trace(origin);
|
|
8618
9758
|
|
|
9759
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9760
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9761
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9762
|
+
return callback(null, errorObj);
|
|
9763
|
+
}
|
|
9764
|
+
|
|
8619
9765
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8620
9766
|
if (body === undefined || body === null || body === '') {
|
|
8621
9767
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8701,6 +9847,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8701
9847
|
const origin = `${this.id}-${meth}`;
|
|
8702
9848
|
log.trace(origin);
|
|
8703
9849
|
|
|
9850
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9851
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9852
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9853
|
+
return callback(null, errorObj);
|
|
9854
|
+
}
|
|
9855
|
+
|
|
8704
9856
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8705
9857
|
if (body === undefined || body === null || body === '') {
|
|
8706
9858
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8786,6 +9938,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8786
9938
|
const origin = `${this.id}-${meth}`;
|
|
8787
9939
|
log.trace(origin);
|
|
8788
9940
|
|
|
9941
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
9942
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
9943
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
9944
|
+
return callback(null, errorObj);
|
|
9945
|
+
}
|
|
9946
|
+
|
|
8789
9947
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8790
9948
|
if (body === undefined || body === null || body === '') {
|
|
8791
9949
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8871,6 +10029,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8871
10029
|
const origin = `${this.id}-${meth}`;
|
|
8872
10030
|
log.trace(origin);
|
|
8873
10031
|
|
|
10032
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10033
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10034
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10035
|
+
return callback(null, errorObj);
|
|
10036
|
+
}
|
|
10037
|
+
|
|
8874
10038
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8875
10039
|
if (body === undefined || body === null || body === '') {
|
|
8876
10040
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -8956,6 +10120,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
8956
10120
|
const origin = `${this.id}-${meth}`;
|
|
8957
10121
|
log.trace(origin);
|
|
8958
10122
|
|
|
10123
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10124
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10125
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10126
|
+
return callback(null, errorObj);
|
|
10127
|
+
}
|
|
10128
|
+
|
|
8959
10129
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
8960
10130
|
if (body === undefined || body === null || body === '') {
|
|
8961
10131
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9041,6 +10211,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9041
10211
|
const origin = `${this.id}-${meth}`;
|
|
9042
10212
|
log.trace(origin);
|
|
9043
10213
|
|
|
10214
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10215
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10216
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10217
|
+
return callback(null, errorObj);
|
|
10218
|
+
}
|
|
10219
|
+
|
|
9044
10220
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9045
10221
|
if (body === undefined || body === null || body === '') {
|
|
9046
10222
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9126,6 +10302,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9126
10302
|
const origin = `${this.id}-${meth}`;
|
|
9127
10303
|
log.trace(origin);
|
|
9128
10304
|
|
|
10305
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10306
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10307
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10308
|
+
return callback(null, errorObj);
|
|
10309
|
+
}
|
|
10310
|
+
|
|
9129
10311
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9130
10312
|
if (body === undefined || body === null || body === '') {
|
|
9131
10313
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9211,6 +10393,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9211
10393
|
const origin = `${this.id}-${meth}`;
|
|
9212
10394
|
log.trace(origin);
|
|
9213
10395
|
|
|
10396
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10397
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10398
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10399
|
+
return callback(null, errorObj);
|
|
10400
|
+
}
|
|
10401
|
+
|
|
9214
10402
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9215
10403
|
if (body === undefined || body === null || body === '') {
|
|
9216
10404
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9296,6 +10484,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9296
10484
|
const origin = `${this.id}-${meth}`;
|
|
9297
10485
|
log.trace(origin);
|
|
9298
10486
|
|
|
10487
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10488
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10489
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10490
|
+
return callback(null, errorObj);
|
|
10491
|
+
}
|
|
10492
|
+
|
|
9299
10493
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9300
10494
|
if (body === undefined || body === null || body === '') {
|
|
9301
10495
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9381,6 +10575,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9381
10575
|
const origin = `${this.id}-${meth}`;
|
|
9382
10576
|
log.trace(origin);
|
|
9383
10577
|
|
|
10578
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10579
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10580
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10581
|
+
return callback(null, errorObj);
|
|
10582
|
+
}
|
|
10583
|
+
|
|
9384
10584
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9385
10585
|
if (body === undefined || body === null || body === '') {
|
|
9386
10586
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9466,6 +10666,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9466
10666
|
const origin = `${this.id}-${meth}`;
|
|
9467
10667
|
log.trace(origin);
|
|
9468
10668
|
|
|
10669
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10670
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10671
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10672
|
+
return callback(null, errorObj);
|
|
10673
|
+
}
|
|
10674
|
+
|
|
9469
10675
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9470
10676
|
if (body === undefined || body === null || body === '') {
|
|
9471
10677
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9551,6 +10757,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9551
10757
|
const origin = `${this.id}-${meth}`;
|
|
9552
10758
|
log.trace(origin);
|
|
9553
10759
|
|
|
10760
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10761
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10762
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10763
|
+
return callback(null, errorObj);
|
|
10764
|
+
}
|
|
10765
|
+
|
|
9554
10766
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9555
10767
|
if (body === undefined || body === null || body === '') {
|
|
9556
10768
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9636,6 +10848,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9636
10848
|
const origin = `${this.id}-${meth}`;
|
|
9637
10849
|
log.trace(origin);
|
|
9638
10850
|
|
|
10851
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10852
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10853
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10854
|
+
return callback(null, errorObj);
|
|
10855
|
+
}
|
|
10856
|
+
|
|
9639
10857
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9640
10858
|
if (body === undefined || body === null || body === '') {
|
|
9641
10859
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9721,6 +10939,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9721
10939
|
const origin = `${this.id}-${meth}`;
|
|
9722
10940
|
log.trace(origin);
|
|
9723
10941
|
|
|
10942
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
10943
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
10944
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
10945
|
+
return callback(null, errorObj);
|
|
10946
|
+
}
|
|
10947
|
+
|
|
9724
10948
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9725
10949
|
if (body === undefined || body === null || body === '') {
|
|
9726
10950
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9806,6 +11030,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9806
11030
|
const origin = `${this.id}-${meth}`;
|
|
9807
11031
|
log.trace(origin);
|
|
9808
11032
|
|
|
11033
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11034
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11035
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11036
|
+
return callback(null, errorObj);
|
|
11037
|
+
}
|
|
11038
|
+
|
|
9809
11039
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9810
11040
|
if (body === undefined || body === null || body === '') {
|
|
9811
11041
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9891,6 +11121,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9891
11121
|
const origin = `${this.id}-${meth}`;
|
|
9892
11122
|
log.trace(origin);
|
|
9893
11123
|
|
|
11124
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11125
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11126
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11127
|
+
return callback(null, errorObj);
|
|
11128
|
+
}
|
|
11129
|
+
|
|
9894
11130
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9895
11131
|
if (body === undefined || body === null || body === '') {
|
|
9896
11132
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -9976,6 +11212,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
9976
11212
|
const origin = `${this.id}-${meth}`;
|
|
9977
11213
|
log.trace(origin);
|
|
9978
11214
|
|
|
11215
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11216
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11217
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11218
|
+
return callback(null, errorObj);
|
|
11219
|
+
}
|
|
11220
|
+
|
|
9979
11221
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
9980
11222
|
if (body === undefined || body === null || body === '') {
|
|
9981
11223
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10061,6 +11303,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10061
11303
|
const origin = `${this.id}-${meth}`;
|
|
10062
11304
|
log.trace(origin);
|
|
10063
11305
|
|
|
11306
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11307
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11308
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11309
|
+
return callback(null, errorObj);
|
|
11310
|
+
}
|
|
11311
|
+
|
|
10064
11312
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10065
11313
|
if (body === undefined || body === null || body === '') {
|
|
10066
11314
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10146,6 +11394,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10146
11394
|
const origin = `${this.id}-${meth}`;
|
|
10147
11395
|
log.trace(origin);
|
|
10148
11396
|
|
|
11397
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11398
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11399
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11400
|
+
return callback(null, errorObj);
|
|
11401
|
+
}
|
|
11402
|
+
|
|
10149
11403
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10150
11404
|
if (body === undefined || body === null || body === '') {
|
|
10151
11405
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10231,6 +11485,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10231
11485
|
const origin = `${this.id}-${meth}`;
|
|
10232
11486
|
log.trace(origin);
|
|
10233
11487
|
|
|
11488
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11489
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11490
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11491
|
+
return callback(null, errorObj);
|
|
11492
|
+
}
|
|
11493
|
+
|
|
10234
11494
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10235
11495
|
if (body === undefined || body === null || body === '') {
|
|
10236
11496
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10316,6 +11576,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10316
11576
|
const origin = `${this.id}-${meth}`;
|
|
10317
11577
|
log.trace(origin);
|
|
10318
11578
|
|
|
11579
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11580
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11581
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11582
|
+
return callback(null, errorObj);
|
|
11583
|
+
}
|
|
11584
|
+
|
|
10319
11585
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10320
11586
|
if (body === undefined || body === null || body === '') {
|
|
10321
11587
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10401,6 +11667,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10401
11667
|
const origin = `${this.id}-${meth}`;
|
|
10402
11668
|
log.trace(origin);
|
|
10403
11669
|
|
|
11670
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11671
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11672
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11673
|
+
return callback(null, errorObj);
|
|
11674
|
+
}
|
|
11675
|
+
|
|
10404
11676
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10405
11677
|
if (body === undefined || body === null || body === '') {
|
|
10406
11678
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10486,6 +11758,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10486
11758
|
const origin = `${this.id}-${meth}`;
|
|
10487
11759
|
log.trace(origin);
|
|
10488
11760
|
|
|
11761
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11762
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11763
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11764
|
+
return callback(null, errorObj);
|
|
11765
|
+
}
|
|
11766
|
+
|
|
10489
11767
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10490
11768
|
if (body === undefined || body === null || body === '') {
|
|
10491
11769
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10571,6 +11849,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10571
11849
|
const origin = `${this.id}-${meth}`;
|
|
10572
11850
|
log.trace(origin);
|
|
10573
11851
|
|
|
11852
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11853
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11854
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11855
|
+
return callback(null, errorObj);
|
|
11856
|
+
}
|
|
11857
|
+
|
|
10574
11858
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10575
11859
|
if (body === undefined || body === null || body === '') {
|
|
10576
11860
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10656,6 +11940,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10656
11940
|
const origin = `${this.id}-${meth}`;
|
|
10657
11941
|
log.trace(origin);
|
|
10658
11942
|
|
|
11943
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
11944
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
11945
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
11946
|
+
return callback(null, errorObj);
|
|
11947
|
+
}
|
|
11948
|
+
|
|
10659
11949
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10660
11950
|
if (body === undefined || body === null || body === '') {
|
|
10661
11951
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10741,6 +12031,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10741
12031
|
const origin = `${this.id}-${meth}`;
|
|
10742
12032
|
log.trace(origin);
|
|
10743
12033
|
|
|
12034
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12035
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12036
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12037
|
+
return callback(null, errorObj);
|
|
12038
|
+
}
|
|
12039
|
+
|
|
10744
12040
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10745
12041
|
if (body === undefined || body === null || body === '') {
|
|
10746
12042
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10826,6 +12122,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10826
12122
|
const origin = `${this.id}-${meth}`;
|
|
10827
12123
|
log.trace(origin);
|
|
10828
12124
|
|
|
12125
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12126
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12127
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12128
|
+
return callback(null, errorObj);
|
|
12129
|
+
}
|
|
12130
|
+
|
|
10829
12131
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10830
12132
|
if (body === undefined || body === null || body === '') {
|
|
10831
12133
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10911,6 +12213,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10911
12213
|
const origin = `${this.id}-${meth}`;
|
|
10912
12214
|
log.trace(origin);
|
|
10913
12215
|
|
|
12216
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12217
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12218
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12219
|
+
return callback(null, errorObj);
|
|
12220
|
+
}
|
|
12221
|
+
|
|
10914
12222
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
10915
12223
|
if (body === undefined || body === null || body === '') {
|
|
10916
12224
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -10996,6 +12304,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
10996
12304
|
const origin = `${this.id}-${meth}`;
|
|
10997
12305
|
log.trace(origin);
|
|
10998
12306
|
|
|
12307
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12308
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12309
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12310
|
+
return callback(null, errorObj);
|
|
12311
|
+
}
|
|
12312
|
+
|
|
10999
12313
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11000
12314
|
if (body === undefined || body === null || body === '') {
|
|
11001
12315
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11081,6 +12395,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11081
12395
|
const origin = `${this.id}-${meth}`;
|
|
11082
12396
|
log.trace(origin);
|
|
11083
12397
|
|
|
12398
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12399
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12400
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12401
|
+
return callback(null, errorObj);
|
|
12402
|
+
}
|
|
12403
|
+
|
|
11084
12404
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11085
12405
|
if (body === undefined || body === null || body === '') {
|
|
11086
12406
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11166,6 +12486,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11166
12486
|
const origin = `${this.id}-${meth}`;
|
|
11167
12487
|
log.trace(origin);
|
|
11168
12488
|
|
|
12489
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12490
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12491
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12492
|
+
return callback(null, errorObj);
|
|
12493
|
+
}
|
|
12494
|
+
|
|
11169
12495
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11170
12496
|
if (body === undefined || body === null || body === '') {
|
|
11171
12497
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11251,6 +12577,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11251
12577
|
const origin = `${this.id}-${meth}`;
|
|
11252
12578
|
log.trace(origin);
|
|
11253
12579
|
|
|
12580
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12581
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12582
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12583
|
+
return callback(null, errorObj);
|
|
12584
|
+
}
|
|
12585
|
+
|
|
11254
12586
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11255
12587
|
if (body === undefined || body === null || body === '') {
|
|
11256
12588
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11336,6 +12668,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11336
12668
|
const origin = `${this.id}-${meth}`;
|
|
11337
12669
|
log.trace(origin);
|
|
11338
12670
|
|
|
12671
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12672
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12673
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12674
|
+
return callback(null, errorObj);
|
|
12675
|
+
}
|
|
12676
|
+
|
|
11339
12677
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11340
12678
|
if (body === undefined || body === null || body === '') {
|
|
11341
12679
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11421,6 +12759,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11421
12759
|
const origin = `${this.id}-${meth}`;
|
|
11422
12760
|
log.trace(origin);
|
|
11423
12761
|
|
|
12762
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12763
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12764
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12765
|
+
return callback(null, errorObj);
|
|
12766
|
+
}
|
|
12767
|
+
|
|
11424
12768
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11425
12769
|
if (body === undefined || body === null || body === '') {
|
|
11426
12770
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11506,6 +12850,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11506
12850
|
const origin = `${this.id}-${meth}`;
|
|
11507
12851
|
log.trace(origin);
|
|
11508
12852
|
|
|
12853
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12854
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12855
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12856
|
+
return callback(null, errorObj);
|
|
12857
|
+
}
|
|
12858
|
+
|
|
11509
12859
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11510
12860
|
if (body === undefined || body === null || body === '') {
|
|
11511
12861
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11591,6 +12941,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11591
12941
|
const origin = `${this.id}-${meth}`;
|
|
11592
12942
|
log.trace(origin);
|
|
11593
12943
|
|
|
12944
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
12945
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
12946
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
12947
|
+
return callback(null, errorObj);
|
|
12948
|
+
}
|
|
12949
|
+
|
|
11594
12950
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11595
12951
|
if (body === undefined || body === null || body === '') {
|
|
11596
12952
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11676,6 +13032,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11676
13032
|
const origin = `${this.id}-${meth}`;
|
|
11677
13033
|
log.trace(origin);
|
|
11678
13034
|
|
|
13035
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13036
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13037
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13038
|
+
return callback(null, errorObj);
|
|
13039
|
+
}
|
|
13040
|
+
|
|
11679
13041
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11680
13042
|
if (body === undefined || body === null || body === '') {
|
|
11681
13043
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11761,6 +13123,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11761
13123
|
const origin = `${this.id}-${meth}`;
|
|
11762
13124
|
log.trace(origin);
|
|
11763
13125
|
|
|
13126
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13127
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13128
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13129
|
+
return callback(null, errorObj);
|
|
13130
|
+
}
|
|
13131
|
+
|
|
11764
13132
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11765
13133
|
if (body === undefined || body === null || body === '') {
|
|
11766
13134
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11846,6 +13214,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11846
13214
|
const origin = `${this.id}-${meth}`;
|
|
11847
13215
|
log.trace(origin);
|
|
11848
13216
|
|
|
13217
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13218
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13219
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13220
|
+
return callback(null, errorObj);
|
|
13221
|
+
}
|
|
13222
|
+
|
|
11849
13223
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11850
13224
|
if (body === undefined || body === null || body === '') {
|
|
11851
13225
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -11931,6 +13305,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
11931
13305
|
const origin = `${this.id}-${meth}`;
|
|
11932
13306
|
log.trace(origin);
|
|
11933
13307
|
|
|
13308
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13309
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13310
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13311
|
+
return callback(null, errorObj);
|
|
13312
|
+
}
|
|
13313
|
+
|
|
11934
13314
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
11935
13315
|
if (body === undefined || body === null || body === '') {
|
|
11936
13316
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12016,6 +13396,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12016
13396
|
const origin = `${this.id}-${meth}`;
|
|
12017
13397
|
log.trace(origin);
|
|
12018
13398
|
|
|
13399
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13400
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13401
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13402
|
+
return callback(null, errorObj);
|
|
13403
|
+
}
|
|
13404
|
+
|
|
12019
13405
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12020
13406
|
if (body === undefined || body === null || body === '') {
|
|
12021
13407
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12101,6 +13487,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12101
13487
|
const origin = `${this.id}-${meth}`;
|
|
12102
13488
|
log.trace(origin);
|
|
12103
13489
|
|
|
13490
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13491
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13492
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13493
|
+
return callback(null, errorObj);
|
|
13494
|
+
}
|
|
13495
|
+
|
|
12104
13496
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12105
13497
|
if (body === undefined || body === null || body === '') {
|
|
12106
13498
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12186,6 +13578,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12186
13578
|
const origin = `${this.id}-${meth}`;
|
|
12187
13579
|
log.trace(origin);
|
|
12188
13580
|
|
|
13581
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13582
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13583
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13584
|
+
return callback(null, errorObj);
|
|
13585
|
+
}
|
|
13586
|
+
|
|
12189
13587
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12190
13588
|
if (body === undefined || body === null || body === '') {
|
|
12191
13589
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12271,6 +13669,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12271
13669
|
const origin = `${this.id}-${meth}`;
|
|
12272
13670
|
log.trace(origin);
|
|
12273
13671
|
|
|
13672
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13673
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13674
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13675
|
+
return callback(null, errorObj);
|
|
13676
|
+
}
|
|
13677
|
+
|
|
12274
13678
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12275
13679
|
if (body === undefined || body === null || body === '') {
|
|
12276
13680
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12356,6 +13760,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12356
13760
|
const origin = `${this.id}-${meth}`;
|
|
12357
13761
|
log.trace(origin);
|
|
12358
13762
|
|
|
13763
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13764
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13765
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13766
|
+
return callback(null, errorObj);
|
|
13767
|
+
}
|
|
13768
|
+
|
|
12359
13769
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12360
13770
|
if (body === undefined || body === null || body === '') {
|
|
12361
13771
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12441,6 +13851,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12441
13851
|
const origin = `${this.id}-${meth}`;
|
|
12442
13852
|
log.trace(origin);
|
|
12443
13853
|
|
|
13854
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13855
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13856
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13857
|
+
return callback(null, errorObj);
|
|
13858
|
+
}
|
|
13859
|
+
|
|
12444
13860
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12445
13861
|
if (body === undefined || body === null || body === '') {
|
|
12446
13862
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12526,6 +13942,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12526
13942
|
const origin = `${this.id}-${meth}`;
|
|
12527
13943
|
log.trace(origin);
|
|
12528
13944
|
|
|
13945
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
13946
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
13947
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
13948
|
+
return callback(null, errorObj);
|
|
13949
|
+
}
|
|
13950
|
+
|
|
12529
13951
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12530
13952
|
if (body === undefined || body === null || body === '') {
|
|
12531
13953
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12611,6 +14033,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12611
14033
|
const origin = `${this.id}-${meth}`;
|
|
12612
14034
|
log.trace(origin);
|
|
12613
14035
|
|
|
14036
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14037
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14038
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14039
|
+
return callback(null, errorObj);
|
|
14040
|
+
}
|
|
14041
|
+
|
|
12614
14042
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12615
14043
|
if (body === undefined || body === null || body === '') {
|
|
12616
14044
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12696,6 +14124,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12696
14124
|
const origin = `${this.id}-${meth}`;
|
|
12697
14125
|
log.trace(origin);
|
|
12698
14126
|
|
|
14127
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14128
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14129
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14130
|
+
return callback(null, errorObj);
|
|
14131
|
+
}
|
|
14132
|
+
|
|
12699
14133
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12700
14134
|
if (body === undefined || body === null || body === '') {
|
|
12701
14135
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12781,6 +14215,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12781
14215
|
const origin = `${this.id}-${meth}`;
|
|
12782
14216
|
log.trace(origin);
|
|
12783
14217
|
|
|
14218
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14219
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14220
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14221
|
+
return callback(null, errorObj);
|
|
14222
|
+
}
|
|
14223
|
+
|
|
12784
14224
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12785
14225
|
if (body === undefined || body === null || body === '') {
|
|
12786
14226
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12866,6 +14306,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12866
14306
|
const origin = `${this.id}-${meth}`;
|
|
12867
14307
|
log.trace(origin);
|
|
12868
14308
|
|
|
14309
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14310
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14311
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14312
|
+
return callback(null, errorObj);
|
|
14313
|
+
}
|
|
14314
|
+
|
|
12869
14315
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12870
14316
|
if (body === undefined || body === null || body === '') {
|
|
12871
14317
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -12951,6 +14397,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
12951
14397
|
const origin = `${this.id}-${meth}`;
|
|
12952
14398
|
log.trace(origin);
|
|
12953
14399
|
|
|
14400
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14401
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14402
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14403
|
+
return callback(null, errorObj);
|
|
14404
|
+
}
|
|
14405
|
+
|
|
12954
14406
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
12955
14407
|
if (body === undefined || body === null || body === '') {
|
|
12956
14408
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13036,6 +14488,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13036
14488
|
const origin = `${this.id}-${meth}`;
|
|
13037
14489
|
log.trace(origin);
|
|
13038
14490
|
|
|
14491
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14492
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14493
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14494
|
+
return callback(null, errorObj);
|
|
14495
|
+
}
|
|
14496
|
+
|
|
13039
14497
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13040
14498
|
if (body === undefined || body === null || body === '') {
|
|
13041
14499
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13121,6 +14579,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13121
14579
|
const origin = `${this.id}-${meth}`;
|
|
13122
14580
|
log.trace(origin);
|
|
13123
14581
|
|
|
14582
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14583
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14584
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14585
|
+
return callback(null, errorObj);
|
|
14586
|
+
}
|
|
14587
|
+
|
|
13124
14588
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13125
14589
|
if (body === undefined || body === null || body === '') {
|
|
13126
14590
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13206,6 +14670,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13206
14670
|
const origin = `${this.id}-${meth}`;
|
|
13207
14671
|
log.trace(origin);
|
|
13208
14672
|
|
|
14673
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14674
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14675
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14676
|
+
return callback(null, errorObj);
|
|
14677
|
+
}
|
|
14678
|
+
|
|
13209
14679
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13210
14680
|
if (body === undefined || body === null || body === '') {
|
|
13211
14681
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13291,6 +14761,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13291
14761
|
const origin = `${this.id}-${meth}`;
|
|
13292
14762
|
log.trace(origin);
|
|
13293
14763
|
|
|
14764
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14765
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14766
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14767
|
+
return callback(null, errorObj);
|
|
14768
|
+
}
|
|
14769
|
+
|
|
13294
14770
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13295
14771
|
if (body === undefined || body === null || body === '') {
|
|
13296
14772
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13376,6 +14852,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13376
14852
|
const origin = `${this.id}-${meth}`;
|
|
13377
14853
|
log.trace(origin);
|
|
13378
14854
|
|
|
14855
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14856
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14857
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14858
|
+
return callback(null, errorObj);
|
|
14859
|
+
}
|
|
14860
|
+
|
|
13379
14861
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13380
14862
|
if (body === undefined || body === null || body === '') {
|
|
13381
14863
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13461,6 +14943,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13461
14943
|
const origin = `${this.id}-${meth}`;
|
|
13462
14944
|
log.trace(origin);
|
|
13463
14945
|
|
|
14946
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
14947
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
14948
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
14949
|
+
return callback(null, errorObj);
|
|
14950
|
+
}
|
|
14951
|
+
|
|
13464
14952
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13465
14953
|
if (body === undefined || body === null || body === '') {
|
|
13466
14954
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13546,6 +15034,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13546
15034
|
const origin = `${this.id}-${meth}`;
|
|
13547
15035
|
log.trace(origin);
|
|
13548
15036
|
|
|
15037
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15038
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15039
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15040
|
+
return callback(null, errorObj);
|
|
15041
|
+
}
|
|
15042
|
+
|
|
13549
15043
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13550
15044
|
if (body === undefined || body === null || body === '') {
|
|
13551
15045
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13631,6 +15125,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13631
15125
|
const origin = `${this.id}-${meth}`;
|
|
13632
15126
|
log.trace(origin);
|
|
13633
15127
|
|
|
15128
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15129
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15130
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15131
|
+
return callback(null, errorObj);
|
|
15132
|
+
}
|
|
15133
|
+
|
|
13634
15134
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13635
15135
|
if (body === undefined || body === null || body === '') {
|
|
13636
15136
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13716,6 +15216,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13716
15216
|
const origin = `${this.id}-${meth}`;
|
|
13717
15217
|
log.trace(origin);
|
|
13718
15218
|
|
|
15219
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15220
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15221
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15222
|
+
return callback(null, errorObj);
|
|
15223
|
+
}
|
|
15224
|
+
|
|
13719
15225
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13720
15226
|
if (body === undefined || body === null || body === '') {
|
|
13721
15227
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13801,6 +15307,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13801
15307
|
const origin = `${this.id}-${meth}`;
|
|
13802
15308
|
log.trace(origin);
|
|
13803
15309
|
|
|
15310
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15311
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15312
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15313
|
+
return callback(null, errorObj);
|
|
15314
|
+
}
|
|
15315
|
+
|
|
13804
15316
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13805
15317
|
if (body === undefined || body === null || body === '') {
|
|
13806
15318
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13886,6 +15398,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13886
15398
|
const origin = `${this.id}-${meth}`;
|
|
13887
15399
|
log.trace(origin);
|
|
13888
15400
|
|
|
15401
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15402
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15403
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15404
|
+
return callback(null, errorObj);
|
|
15405
|
+
}
|
|
15406
|
+
|
|
13889
15407
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13890
15408
|
if (body === undefined || body === null || body === '') {
|
|
13891
15409
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -13971,6 +15489,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
13971
15489
|
const origin = `${this.id}-${meth}`;
|
|
13972
15490
|
log.trace(origin);
|
|
13973
15491
|
|
|
15492
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15493
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15494
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15495
|
+
return callback(null, errorObj);
|
|
15496
|
+
}
|
|
15497
|
+
|
|
13974
15498
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
13975
15499
|
if (body === undefined || body === null || body === '') {
|
|
13976
15500
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14056,6 +15580,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14056
15580
|
const origin = `${this.id}-${meth}`;
|
|
14057
15581
|
log.trace(origin);
|
|
14058
15582
|
|
|
15583
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15584
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15585
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15586
|
+
return callback(null, errorObj);
|
|
15587
|
+
}
|
|
15588
|
+
|
|
14059
15589
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14060
15590
|
if (body === undefined || body === null || body === '') {
|
|
14061
15591
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14141,6 +15671,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14141
15671
|
const origin = `${this.id}-${meth}`;
|
|
14142
15672
|
log.trace(origin);
|
|
14143
15673
|
|
|
15674
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15675
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15676
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15677
|
+
return callback(null, errorObj);
|
|
15678
|
+
}
|
|
15679
|
+
|
|
14144
15680
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14145
15681
|
if (body === undefined || body === null || body === '') {
|
|
14146
15682
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14226,6 +15762,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14226
15762
|
const origin = `${this.id}-${meth}`;
|
|
14227
15763
|
log.trace(origin);
|
|
14228
15764
|
|
|
15765
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15766
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15767
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15768
|
+
return callback(null, errorObj);
|
|
15769
|
+
}
|
|
15770
|
+
|
|
14229
15771
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14230
15772
|
if (body === undefined || body === null || body === '') {
|
|
14231
15773
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14311,6 +15853,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14311
15853
|
const origin = `${this.id}-${meth}`;
|
|
14312
15854
|
log.trace(origin);
|
|
14313
15855
|
|
|
15856
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15857
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15858
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15859
|
+
return callback(null, errorObj);
|
|
15860
|
+
}
|
|
15861
|
+
|
|
14314
15862
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14315
15863
|
if (body === undefined || body === null || body === '') {
|
|
14316
15864
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14396,6 +15944,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14396
15944
|
const origin = `${this.id}-${meth}`;
|
|
14397
15945
|
log.trace(origin);
|
|
14398
15946
|
|
|
15947
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
15948
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
15949
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
15950
|
+
return callback(null, errorObj);
|
|
15951
|
+
}
|
|
15952
|
+
|
|
14399
15953
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14400
15954
|
if (body === undefined || body === null || body === '') {
|
|
14401
15955
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14481,6 +16035,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14481
16035
|
const origin = `${this.id}-${meth}`;
|
|
14482
16036
|
log.trace(origin);
|
|
14483
16037
|
|
|
16038
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16039
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16040
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16041
|
+
return callback(null, errorObj);
|
|
16042
|
+
}
|
|
16043
|
+
|
|
14484
16044
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14485
16045
|
if (body === undefined || body === null || body === '') {
|
|
14486
16046
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14566,6 +16126,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14566
16126
|
const origin = `${this.id}-${meth}`;
|
|
14567
16127
|
log.trace(origin);
|
|
14568
16128
|
|
|
16129
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16130
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16131
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16132
|
+
return callback(null, errorObj);
|
|
16133
|
+
}
|
|
16134
|
+
|
|
14569
16135
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14570
16136
|
if (body === undefined || body === null || body === '') {
|
|
14571
16137
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14651,6 +16217,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14651
16217
|
const origin = `${this.id}-${meth}`;
|
|
14652
16218
|
log.trace(origin);
|
|
14653
16219
|
|
|
16220
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16221
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16222
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16223
|
+
return callback(null, errorObj);
|
|
16224
|
+
}
|
|
16225
|
+
|
|
14654
16226
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14655
16227
|
if (body === undefined || body === null || body === '') {
|
|
14656
16228
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14736,6 +16308,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14736
16308
|
const origin = `${this.id}-${meth}`;
|
|
14737
16309
|
log.trace(origin);
|
|
14738
16310
|
|
|
16311
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16312
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16313
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16314
|
+
return callback(null, errorObj);
|
|
16315
|
+
}
|
|
16316
|
+
|
|
14739
16317
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14740
16318
|
if (body === undefined || body === null || body === '') {
|
|
14741
16319
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14821,6 +16399,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14821
16399
|
const origin = `${this.id}-${meth}`;
|
|
14822
16400
|
log.trace(origin);
|
|
14823
16401
|
|
|
16402
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16403
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16404
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16405
|
+
return callback(null, errorObj);
|
|
16406
|
+
}
|
|
16407
|
+
|
|
14824
16408
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14825
16409
|
if (body === undefined || body === null || body === '') {
|
|
14826
16410
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14906,6 +16490,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14906
16490
|
const origin = `${this.id}-${meth}`;
|
|
14907
16491
|
log.trace(origin);
|
|
14908
16492
|
|
|
16493
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16494
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16495
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16496
|
+
return callback(null, errorObj);
|
|
16497
|
+
}
|
|
16498
|
+
|
|
14909
16499
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14910
16500
|
if (body === undefined || body === null || body === '') {
|
|
14911
16501
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -14991,6 +16581,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
14991
16581
|
const origin = `${this.id}-${meth}`;
|
|
14992
16582
|
log.trace(origin);
|
|
14993
16583
|
|
|
16584
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16585
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16586
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16587
|
+
return callback(null, errorObj);
|
|
16588
|
+
}
|
|
16589
|
+
|
|
14994
16590
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
14995
16591
|
if (body === undefined || body === null || body === '') {
|
|
14996
16592
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15076,6 +16672,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15076
16672
|
const origin = `${this.id}-${meth}`;
|
|
15077
16673
|
log.trace(origin);
|
|
15078
16674
|
|
|
16675
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16676
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16677
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16678
|
+
return callback(null, errorObj);
|
|
16679
|
+
}
|
|
16680
|
+
|
|
15079
16681
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15080
16682
|
if (body === undefined || body === null || body === '') {
|
|
15081
16683
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15161,6 +16763,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15161
16763
|
const origin = `${this.id}-${meth}`;
|
|
15162
16764
|
log.trace(origin);
|
|
15163
16765
|
|
|
16766
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16767
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16768
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16769
|
+
return callback(null, errorObj);
|
|
16770
|
+
}
|
|
16771
|
+
|
|
15164
16772
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15165
16773
|
if (body === undefined || body === null || body === '') {
|
|
15166
16774
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15246,6 +16854,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15246
16854
|
const origin = `${this.id}-${meth}`;
|
|
15247
16855
|
log.trace(origin);
|
|
15248
16856
|
|
|
16857
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16858
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16859
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16860
|
+
return callback(null, errorObj);
|
|
16861
|
+
}
|
|
16862
|
+
|
|
15249
16863
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15250
16864
|
if (body === undefined || body === null || body === '') {
|
|
15251
16865
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15331,6 +16945,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15331
16945
|
const origin = `${this.id}-${meth}`;
|
|
15332
16946
|
log.trace(origin);
|
|
15333
16947
|
|
|
16948
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
16949
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
16950
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
16951
|
+
return callback(null, errorObj);
|
|
16952
|
+
}
|
|
16953
|
+
|
|
15334
16954
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15335
16955
|
if (body === undefined || body === null || body === '') {
|
|
15336
16956
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15416,6 +17036,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15416
17036
|
const origin = `${this.id}-${meth}`;
|
|
15417
17037
|
log.trace(origin);
|
|
15418
17038
|
|
|
17039
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17040
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17041
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17042
|
+
return callback(null, errorObj);
|
|
17043
|
+
}
|
|
17044
|
+
|
|
15419
17045
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15420
17046
|
if (body === undefined || body === null || body === '') {
|
|
15421
17047
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15501,6 +17127,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15501
17127
|
const origin = `${this.id}-${meth}`;
|
|
15502
17128
|
log.trace(origin);
|
|
15503
17129
|
|
|
17130
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17131
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17132
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17133
|
+
return callback(null, errorObj);
|
|
17134
|
+
}
|
|
17135
|
+
|
|
15504
17136
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15505
17137
|
if (body === undefined || body === null || body === '') {
|
|
15506
17138
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15586,6 +17218,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15586
17218
|
const origin = `${this.id}-${meth}`;
|
|
15587
17219
|
log.trace(origin);
|
|
15588
17220
|
|
|
17221
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17222
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17223
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17224
|
+
return callback(null, errorObj);
|
|
17225
|
+
}
|
|
17226
|
+
|
|
15589
17227
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15590
17228
|
if (body === undefined || body === null || body === '') {
|
|
15591
17229
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15671,6 +17309,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15671
17309
|
const origin = `${this.id}-${meth}`;
|
|
15672
17310
|
log.trace(origin);
|
|
15673
17311
|
|
|
17312
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17313
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17314
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17315
|
+
return callback(null, errorObj);
|
|
17316
|
+
}
|
|
17317
|
+
|
|
15674
17318
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15675
17319
|
if (body === undefined || body === null || body === '') {
|
|
15676
17320
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15756,6 +17400,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15756
17400
|
const origin = `${this.id}-${meth}`;
|
|
15757
17401
|
log.trace(origin);
|
|
15758
17402
|
|
|
17403
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17404
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17405
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17406
|
+
return callback(null, errorObj);
|
|
17407
|
+
}
|
|
17408
|
+
|
|
15759
17409
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15760
17410
|
if (body === undefined || body === null || body === '') {
|
|
15761
17411
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15841,6 +17491,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15841
17491
|
const origin = `${this.id}-${meth}`;
|
|
15842
17492
|
log.trace(origin);
|
|
15843
17493
|
|
|
17494
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17495
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17496
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17497
|
+
return callback(null, errorObj);
|
|
17498
|
+
}
|
|
17499
|
+
|
|
15844
17500
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15845
17501
|
if (body === undefined || body === null || body === '') {
|
|
15846
17502
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -15926,6 +17582,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
15926
17582
|
const origin = `${this.id}-${meth}`;
|
|
15927
17583
|
log.trace(origin);
|
|
15928
17584
|
|
|
17585
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17586
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17587
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17588
|
+
return callback(null, errorObj);
|
|
17589
|
+
}
|
|
17590
|
+
|
|
15929
17591
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
15930
17592
|
if (body === undefined || body === null || body === '') {
|
|
15931
17593
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16011,6 +17673,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16011
17673
|
const origin = `${this.id}-${meth}`;
|
|
16012
17674
|
log.trace(origin);
|
|
16013
17675
|
|
|
17676
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17677
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17678
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17679
|
+
return callback(null, errorObj);
|
|
17680
|
+
}
|
|
17681
|
+
|
|
16014
17682
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16015
17683
|
if (body === undefined || body === null || body === '') {
|
|
16016
17684
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16096,6 +17764,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16096
17764
|
const origin = `${this.id}-${meth}`;
|
|
16097
17765
|
log.trace(origin);
|
|
16098
17766
|
|
|
17767
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17768
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17769
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17770
|
+
return callback(null, errorObj);
|
|
17771
|
+
}
|
|
17772
|
+
|
|
16099
17773
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16100
17774
|
if (body === undefined || body === null || body === '') {
|
|
16101
17775
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16181,6 +17855,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16181
17855
|
const origin = `${this.id}-${meth}`;
|
|
16182
17856
|
log.trace(origin);
|
|
16183
17857
|
|
|
17858
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17859
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17860
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17861
|
+
return callback(null, errorObj);
|
|
17862
|
+
}
|
|
17863
|
+
|
|
16184
17864
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16185
17865
|
if (body === undefined || body === null || body === '') {
|
|
16186
17866
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16266,6 +17946,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16266
17946
|
const origin = `${this.id}-${meth}`;
|
|
16267
17947
|
log.trace(origin);
|
|
16268
17948
|
|
|
17949
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
17950
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
17951
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
17952
|
+
return callback(null, errorObj);
|
|
17953
|
+
}
|
|
17954
|
+
|
|
16269
17955
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16270
17956
|
if (body === undefined || body === null || body === '') {
|
|
16271
17957
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16351,6 +18037,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16351
18037
|
const origin = `${this.id}-${meth}`;
|
|
16352
18038
|
log.trace(origin);
|
|
16353
18039
|
|
|
18040
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18041
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18042
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18043
|
+
return callback(null, errorObj);
|
|
18044
|
+
}
|
|
18045
|
+
|
|
16354
18046
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16355
18047
|
if (body === undefined || body === null || body === '') {
|
|
16356
18048
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16436,6 +18128,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16436
18128
|
const origin = `${this.id}-${meth}`;
|
|
16437
18129
|
log.trace(origin);
|
|
16438
18130
|
|
|
18131
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18132
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18133
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18134
|
+
return callback(null, errorObj);
|
|
18135
|
+
}
|
|
18136
|
+
|
|
16439
18137
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16440
18138
|
if (body === undefined || body === null || body === '') {
|
|
16441
18139
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16521,6 +18219,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16521
18219
|
const origin = `${this.id}-${meth}`;
|
|
16522
18220
|
log.trace(origin);
|
|
16523
18221
|
|
|
18222
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18223
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18224
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18225
|
+
return callback(null, errorObj);
|
|
18226
|
+
}
|
|
18227
|
+
|
|
16524
18228
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16525
18229
|
if (body === undefined || body === null || body === '') {
|
|
16526
18230
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16606,6 +18310,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16606
18310
|
const origin = `${this.id}-${meth}`;
|
|
16607
18311
|
log.trace(origin);
|
|
16608
18312
|
|
|
18313
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18314
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18315
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18316
|
+
return callback(null, errorObj);
|
|
18317
|
+
}
|
|
18318
|
+
|
|
16609
18319
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16610
18320
|
if (body === undefined || body === null || body === '') {
|
|
16611
18321
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16691,6 +18401,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16691
18401
|
const origin = `${this.id}-${meth}`;
|
|
16692
18402
|
log.trace(origin);
|
|
16693
18403
|
|
|
18404
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18405
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18406
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18407
|
+
return callback(null, errorObj);
|
|
18408
|
+
}
|
|
18409
|
+
|
|
16694
18410
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16695
18411
|
if (body === undefined || body === null || body === '') {
|
|
16696
18412
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16776,6 +18492,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16776
18492
|
const origin = `${this.id}-${meth}`;
|
|
16777
18493
|
log.trace(origin);
|
|
16778
18494
|
|
|
18495
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18496
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18497
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18498
|
+
return callback(null, errorObj);
|
|
18499
|
+
}
|
|
18500
|
+
|
|
16779
18501
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16780
18502
|
if (body === undefined || body === null || body === '') {
|
|
16781
18503
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16861,6 +18583,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16861
18583
|
const origin = `${this.id}-${meth}`;
|
|
16862
18584
|
log.trace(origin);
|
|
16863
18585
|
|
|
18586
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18587
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18588
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18589
|
+
return callback(null, errorObj);
|
|
18590
|
+
}
|
|
18591
|
+
|
|
16864
18592
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16865
18593
|
if (body === undefined || body === null || body === '') {
|
|
16866
18594
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -16946,6 +18674,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
16946
18674
|
const origin = `${this.id}-${meth}`;
|
|
16947
18675
|
log.trace(origin);
|
|
16948
18676
|
|
|
18677
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18678
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18679
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18680
|
+
return callback(null, errorObj);
|
|
18681
|
+
}
|
|
18682
|
+
|
|
16949
18683
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
16950
18684
|
if (body === undefined || body === null || body === '') {
|
|
16951
18685
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17031,6 +18765,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17031
18765
|
const origin = `${this.id}-${meth}`;
|
|
17032
18766
|
log.trace(origin);
|
|
17033
18767
|
|
|
18768
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18769
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18770
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18771
|
+
return callback(null, errorObj);
|
|
18772
|
+
}
|
|
18773
|
+
|
|
17034
18774
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17035
18775
|
if (body === undefined || body === null || body === '') {
|
|
17036
18776
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17116,6 +18856,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17116
18856
|
const origin = `${this.id}-${meth}`;
|
|
17117
18857
|
log.trace(origin);
|
|
17118
18858
|
|
|
18859
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18860
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18861
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18862
|
+
return callback(null, errorObj);
|
|
18863
|
+
}
|
|
18864
|
+
|
|
17119
18865
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17120
18866
|
if (body === undefined || body === null || body === '') {
|
|
17121
18867
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17201,6 +18947,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17201
18947
|
const origin = `${this.id}-${meth}`;
|
|
17202
18948
|
log.trace(origin);
|
|
17203
18949
|
|
|
18950
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
18951
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
18952
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
18953
|
+
return callback(null, errorObj);
|
|
18954
|
+
}
|
|
18955
|
+
|
|
17204
18956
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17205
18957
|
if (body === undefined || body === null || body === '') {
|
|
17206
18958
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17286,6 +19038,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17286
19038
|
const origin = `${this.id}-${meth}`;
|
|
17287
19039
|
log.trace(origin);
|
|
17288
19040
|
|
|
19041
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19042
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19043
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19044
|
+
return callback(null, errorObj);
|
|
19045
|
+
}
|
|
19046
|
+
|
|
17289
19047
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17290
19048
|
if (body === undefined || body === null || body === '') {
|
|
17291
19049
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17371,6 +19129,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17371
19129
|
const origin = `${this.id}-${meth}`;
|
|
17372
19130
|
log.trace(origin);
|
|
17373
19131
|
|
|
19132
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19133
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19134
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19135
|
+
return callback(null, errorObj);
|
|
19136
|
+
}
|
|
19137
|
+
|
|
17374
19138
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17375
19139
|
if (body === undefined || body === null || body === '') {
|
|
17376
19140
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17456,6 +19220,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17456
19220
|
const origin = `${this.id}-${meth}`;
|
|
17457
19221
|
log.trace(origin);
|
|
17458
19222
|
|
|
19223
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19224
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19225
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19226
|
+
return callback(null, errorObj);
|
|
19227
|
+
}
|
|
19228
|
+
|
|
17459
19229
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17460
19230
|
if (body === undefined || body === null || body === '') {
|
|
17461
19231
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17541,6 +19311,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17541
19311
|
const origin = `${this.id}-${meth}`;
|
|
17542
19312
|
log.trace(origin);
|
|
17543
19313
|
|
|
19314
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19315
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19316
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19317
|
+
return callback(null, errorObj);
|
|
19318
|
+
}
|
|
19319
|
+
|
|
17544
19320
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17545
19321
|
if (body === undefined || body === null || body === '') {
|
|
17546
19322
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17626,6 +19402,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17626
19402
|
const origin = `${this.id}-${meth}`;
|
|
17627
19403
|
log.trace(origin);
|
|
17628
19404
|
|
|
19405
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19406
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19407
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19408
|
+
return callback(null, errorObj);
|
|
19409
|
+
}
|
|
19410
|
+
|
|
17629
19411
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17630
19412
|
if (body === undefined || body === null || body === '') {
|
|
17631
19413
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17711,6 +19493,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17711
19493
|
const origin = `${this.id}-${meth}`;
|
|
17712
19494
|
log.trace(origin);
|
|
17713
19495
|
|
|
19496
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19497
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19498
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19499
|
+
return callback(null, errorObj);
|
|
19500
|
+
}
|
|
19501
|
+
|
|
17714
19502
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17715
19503
|
if (body === undefined || body === null || body === '') {
|
|
17716
19504
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17796,6 +19584,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17796
19584
|
const origin = `${this.id}-${meth}`;
|
|
17797
19585
|
log.trace(origin);
|
|
17798
19586
|
|
|
19587
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19588
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19589
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19590
|
+
return callback(null, errorObj);
|
|
19591
|
+
}
|
|
19592
|
+
|
|
17799
19593
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17800
19594
|
if (body === undefined || body === null || body === '') {
|
|
17801
19595
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17881,6 +19675,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17881
19675
|
const origin = `${this.id}-${meth}`;
|
|
17882
19676
|
log.trace(origin);
|
|
17883
19677
|
|
|
19678
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19679
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19680
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19681
|
+
return callback(null, errorObj);
|
|
19682
|
+
}
|
|
19683
|
+
|
|
17884
19684
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17885
19685
|
if (body === undefined || body === null || body === '') {
|
|
17886
19686
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -17966,6 +19766,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
17966
19766
|
const origin = `${this.id}-${meth}`;
|
|
17967
19767
|
log.trace(origin);
|
|
17968
19768
|
|
|
19769
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19770
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19771
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19772
|
+
return callback(null, errorObj);
|
|
19773
|
+
}
|
|
19774
|
+
|
|
17969
19775
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
17970
19776
|
if (body === undefined || body === null || body === '') {
|
|
17971
19777
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18051,6 +19857,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18051
19857
|
const origin = `${this.id}-${meth}`;
|
|
18052
19858
|
log.trace(origin);
|
|
18053
19859
|
|
|
19860
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19861
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19862
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19863
|
+
return callback(null, errorObj);
|
|
19864
|
+
}
|
|
19865
|
+
|
|
18054
19866
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18055
19867
|
if (body === undefined || body === null || body === '') {
|
|
18056
19868
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18136,6 +19948,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18136
19948
|
const origin = `${this.id}-${meth}`;
|
|
18137
19949
|
log.trace(origin);
|
|
18138
19950
|
|
|
19951
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
19952
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
19953
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
19954
|
+
return callback(null, errorObj);
|
|
19955
|
+
}
|
|
19956
|
+
|
|
18139
19957
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18140
19958
|
if (body === undefined || body === null || body === '') {
|
|
18141
19959
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18221,6 +20039,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18221
20039
|
const origin = `${this.id}-${meth}`;
|
|
18222
20040
|
log.trace(origin);
|
|
18223
20041
|
|
|
20042
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20043
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20044
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20045
|
+
return callback(null, errorObj);
|
|
20046
|
+
}
|
|
20047
|
+
|
|
18224
20048
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18225
20049
|
if (body === undefined || body === null || body === '') {
|
|
18226
20050
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18306,6 +20130,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18306
20130
|
const origin = `${this.id}-${meth}`;
|
|
18307
20131
|
log.trace(origin);
|
|
18308
20132
|
|
|
20133
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20134
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20135
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20136
|
+
return callback(null, errorObj);
|
|
20137
|
+
}
|
|
20138
|
+
|
|
18309
20139
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18310
20140
|
if (body === undefined || body === null || body === '') {
|
|
18311
20141
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18391,6 +20221,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18391
20221
|
const origin = `${this.id}-${meth}`;
|
|
18392
20222
|
log.trace(origin);
|
|
18393
20223
|
|
|
20224
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20225
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20226
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20227
|
+
return callback(null, errorObj);
|
|
20228
|
+
}
|
|
20229
|
+
|
|
18394
20230
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18395
20231
|
if (body === undefined || body === null || body === '') {
|
|
18396
20232
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18476,6 +20312,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18476
20312
|
const origin = `${this.id}-${meth}`;
|
|
18477
20313
|
log.trace(origin);
|
|
18478
20314
|
|
|
20315
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20316
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20317
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20318
|
+
return callback(null, errorObj);
|
|
20319
|
+
}
|
|
20320
|
+
|
|
18479
20321
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18480
20322
|
if (body === undefined || body === null || body === '') {
|
|
18481
20323
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18561,6 +20403,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18561
20403
|
const origin = `${this.id}-${meth}`;
|
|
18562
20404
|
log.trace(origin);
|
|
18563
20405
|
|
|
20406
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20407
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20408
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20409
|
+
return callback(null, errorObj);
|
|
20410
|
+
}
|
|
20411
|
+
|
|
18564
20412
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18565
20413
|
if (body === undefined || body === null || body === '') {
|
|
18566
20414
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18646,6 +20494,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18646
20494
|
const origin = `${this.id}-${meth}`;
|
|
18647
20495
|
log.trace(origin);
|
|
18648
20496
|
|
|
20497
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20498
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20499
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20500
|
+
return callback(null, errorObj);
|
|
20501
|
+
}
|
|
20502
|
+
|
|
18649
20503
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18650
20504
|
if (body === undefined || body === null || body === '') {
|
|
18651
20505
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18731,6 +20585,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18731
20585
|
const origin = `${this.id}-${meth}`;
|
|
18732
20586
|
log.trace(origin);
|
|
18733
20587
|
|
|
20588
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20589
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20590
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20591
|
+
return callback(null, errorObj);
|
|
20592
|
+
}
|
|
20593
|
+
|
|
18734
20594
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18735
20595
|
if (body === undefined || body === null || body === '') {
|
|
18736
20596
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18816,6 +20676,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18816
20676
|
const origin = `${this.id}-${meth}`;
|
|
18817
20677
|
log.trace(origin);
|
|
18818
20678
|
|
|
20679
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20680
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20681
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20682
|
+
return callback(null, errorObj);
|
|
20683
|
+
}
|
|
20684
|
+
|
|
18819
20685
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18820
20686
|
if (body === undefined || body === null || body === '') {
|
|
18821
20687
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18901,6 +20767,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18901
20767
|
const origin = `${this.id}-${meth}`;
|
|
18902
20768
|
log.trace(origin);
|
|
18903
20769
|
|
|
20770
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20771
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20772
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20773
|
+
return callback(null, errorObj);
|
|
20774
|
+
}
|
|
20775
|
+
|
|
18904
20776
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18905
20777
|
if (body === undefined || body === null || body === '') {
|
|
18906
20778
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -18986,6 +20858,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
18986
20858
|
const origin = `${this.id}-${meth}`;
|
|
18987
20859
|
log.trace(origin);
|
|
18988
20860
|
|
|
20861
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20862
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20863
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20864
|
+
return callback(null, errorObj);
|
|
20865
|
+
}
|
|
20866
|
+
|
|
18989
20867
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
18990
20868
|
if (body === undefined || body === null || body === '') {
|
|
18991
20869
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19071,6 +20949,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19071
20949
|
const origin = `${this.id}-${meth}`;
|
|
19072
20950
|
log.trace(origin);
|
|
19073
20951
|
|
|
20952
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
20953
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
20954
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
20955
|
+
return callback(null, errorObj);
|
|
20956
|
+
}
|
|
20957
|
+
|
|
19074
20958
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19075
20959
|
if (body === undefined || body === null || body === '') {
|
|
19076
20960
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19156,6 +21040,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19156
21040
|
const origin = `${this.id}-${meth}`;
|
|
19157
21041
|
log.trace(origin);
|
|
19158
21042
|
|
|
21043
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21044
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21045
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21046
|
+
return callback(null, errorObj);
|
|
21047
|
+
}
|
|
21048
|
+
|
|
19159
21049
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19160
21050
|
if (body === undefined || body === null || body === '') {
|
|
19161
21051
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19241,6 +21131,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19241
21131
|
const origin = `${this.id}-${meth}`;
|
|
19242
21132
|
log.trace(origin);
|
|
19243
21133
|
|
|
21134
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21135
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21136
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21137
|
+
return callback(null, errorObj);
|
|
21138
|
+
}
|
|
21139
|
+
|
|
19244
21140
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19245
21141
|
if (body === undefined || body === null || body === '') {
|
|
19246
21142
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19326,6 +21222,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19326
21222
|
const origin = `${this.id}-${meth}`;
|
|
19327
21223
|
log.trace(origin);
|
|
19328
21224
|
|
|
21225
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21226
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21227
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21228
|
+
return callback(null, errorObj);
|
|
21229
|
+
}
|
|
21230
|
+
|
|
19329
21231
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19330
21232
|
if (body === undefined || body === null || body === '') {
|
|
19331
21233
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19411,6 +21313,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19411
21313
|
const origin = `${this.id}-${meth}`;
|
|
19412
21314
|
log.trace(origin);
|
|
19413
21315
|
|
|
21316
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21317
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21318
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21319
|
+
return callback(null, errorObj);
|
|
21320
|
+
}
|
|
21321
|
+
|
|
19414
21322
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19415
21323
|
if (body === undefined || body === null || body === '') {
|
|
19416
21324
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19496,6 +21404,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19496
21404
|
const origin = `${this.id}-${meth}`;
|
|
19497
21405
|
log.trace(origin);
|
|
19498
21406
|
|
|
21407
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21408
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21409
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21410
|
+
return callback(null, errorObj);
|
|
21411
|
+
}
|
|
21412
|
+
|
|
19499
21413
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19500
21414
|
if (body === undefined || body === null || body === '') {
|
|
19501
21415
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19581,6 +21495,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19581
21495
|
const origin = `${this.id}-${meth}`;
|
|
19582
21496
|
log.trace(origin);
|
|
19583
21497
|
|
|
21498
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21499
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21500
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21501
|
+
return callback(null, errorObj);
|
|
21502
|
+
}
|
|
21503
|
+
|
|
19584
21504
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19585
21505
|
if (body === undefined || body === null || body === '') {
|
|
19586
21506
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19666,6 +21586,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19666
21586
|
const origin = `${this.id}-${meth}`;
|
|
19667
21587
|
log.trace(origin);
|
|
19668
21588
|
|
|
21589
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21590
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21591
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21592
|
+
return callback(null, errorObj);
|
|
21593
|
+
}
|
|
21594
|
+
|
|
19669
21595
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19670
21596
|
if (body === undefined || body === null || body === '') {
|
|
19671
21597
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19751,6 +21677,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19751
21677
|
const origin = `${this.id}-${meth}`;
|
|
19752
21678
|
log.trace(origin);
|
|
19753
21679
|
|
|
21680
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21681
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21682
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21683
|
+
return callback(null, errorObj);
|
|
21684
|
+
}
|
|
21685
|
+
|
|
19754
21686
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19755
21687
|
if (body === undefined || body === null || body === '') {
|
|
19756
21688
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19836,6 +21768,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19836
21768
|
const origin = `${this.id}-${meth}`;
|
|
19837
21769
|
log.trace(origin);
|
|
19838
21770
|
|
|
21771
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21772
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21773
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21774
|
+
return callback(null, errorObj);
|
|
21775
|
+
}
|
|
21776
|
+
|
|
19839
21777
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19840
21778
|
if (body === undefined || body === null || body === '') {
|
|
19841
21779
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -19921,6 +21859,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
19921
21859
|
const origin = `${this.id}-${meth}`;
|
|
19922
21860
|
log.trace(origin);
|
|
19923
21861
|
|
|
21862
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21863
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21864
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21865
|
+
return callback(null, errorObj);
|
|
21866
|
+
}
|
|
21867
|
+
|
|
19924
21868
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
19925
21869
|
if (body === undefined || body === null || body === '') {
|
|
19926
21870
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20006,6 +21950,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20006
21950
|
const origin = `${this.id}-${meth}`;
|
|
20007
21951
|
log.trace(origin);
|
|
20008
21952
|
|
|
21953
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
21954
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
21955
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
21956
|
+
return callback(null, errorObj);
|
|
21957
|
+
}
|
|
21958
|
+
|
|
20009
21959
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20010
21960
|
if (body === undefined || body === null || body === '') {
|
|
20011
21961
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20091,6 +22041,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20091
22041
|
const origin = `${this.id}-${meth}`;
|
|
20092
22042
|
log.trace(origin);
|
|
20093
22043
|
|
|
22044
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22045
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22046
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22047
|
+
return callback(null, errorObj);
|
|
22048
|
+
}
|
|
22049
|
+
|
|
20094
22050
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20095
22051
|
if (body === undefined || body === null || body === '') {
|
|
20096
22052
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20176,6 +22132,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20176
22132
|
const origin = `${this.id}-${meth}`;
|
|
20177
22133
|
log.trace(origin);
|
|
20178
22134
|
|
|
22135
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22136
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22137
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22138
|
+
return callback(null, errorObj);
|
|
22139
|
+
}
|
|
22140
|
+
|
|
20179
22141
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20180
22142
|
if (body === undefined || body === null || body === '') {
|
|
20181
22143
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20261,6 +22223,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20261
22223
|
const origin = `${this.id}-${meth}`;
|
|
20262
22224
|
log.trace(origin);
|
|
20263
22225
|
|
|
22226
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22227
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22228
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22229
|
+
return callback(null, errorObj);
|
|
22230
|
+
}
|
|
22231
|
+
|
|
20264
22232
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20265
22233
|
if (body === undefined || body === null || body === '') {
|
|
20266
22234
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20346,6 +22314,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20346
22314
|
const origin = `${this.id}-${meth}`;
|
|
20347
22315
|
log.trace(origin);
|
|
20348
22316
|
|
|
22317
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22318
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22319
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22320
|
+
return callback(null, errorObj);
|
|
22321
|
+
}
|
|
22322
|
+
|
|
20349
22323
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20350
22324
|
if (body === undefined || body === null || body === '') {
|
|
20351
22325
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20431,6 +22405,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20431
22405
|
const origin = `${this.id}-${meth}`;
|
|
20432
22406
|
log.trace(origin);
|
|
20433
22407
|
|
|
22408
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22409
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22410
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22411
|
+
return callback(null, errorObj);
|
|
22412
|
+
}
|
|
22413
|
+
|
|
20434
22414
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20435
22415
|
if (body === undefined || body === null || body === '') {
|
|
20436
22416
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20516,6 +22496,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20516
22496
|
const origin = `${this.id}-${meth}`;
|
|
20517
22497
|
log.trace(origin);
|
|
20518
22498
|
|
|
22499
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22500
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22501
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22502
|
+
return callback(null, errorObj);
|
|
22503
|
+
}
|
|
22504
|
+
|
|
20519
22505
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20520
22506
|
if (body === undefined || body === null || body === '') {
|
|
20521
22507
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20601,6 +22587,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20601
22587
|
const origin = `${this.id}-${meth}`;
|
|
20602
22588
|
log.trace(origin);
|
|
20603
22589
|
|
|
22590
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22591
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22592
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22593
|
+
return callback(null, errorObj);
|
|
22594
|
+
}
|
|
22595
|
+
|
|
20604
22596
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20605
22597
|
if (body === undefined || body === null || body === '') {
|
|
20606
22598
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20686,6 +22678,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20686
22678
|
const origin = `${this.id}-${meth}`;
|
|
20687
22679
|
log.trace(origin);
|
|
20688
22680
|
|
|
22681
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22682
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22683
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22684
|
+
return callback(null, errorObj);
|
|
22685
|
+
}
|
|
22686
|
+
|
|
20689
22687
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20690
22688
|
if (body === undefined || body === null || body === '') {
|
|
20691
22689
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20771,6 +22769,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20771
22769
|
const origin = `${this.id}-${meth}`;
|
|
20772
22770
|
log.trace(origin);
|
|
20773
22771
|
|
|
22772
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22773
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22774
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22775
|
+
return callback(null, errorObj);
|
|
22776
|
+
}
|
|
22777
|
+
|
|
20774
22778
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20775
22779
|
if (body === undefined || body === null || body === '') {
|
|
20776
22780
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20856,6 +22860,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20856
22860
|
const origin = `${this.id}-${meth}`;
|
|
20857
22861
|
log.trace(origin);
|
|
20858
22862
|
|
|
22863
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22864
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22865
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22866
|
+
return callback(null, errorObj);
|
|
22867
|
+
}
|
|
22868
|
+
|
|
20859
22869
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20860
22870
|
if (body === undefined || body === null || body === '') {
|
|
20861
22871
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -20941,6 +22951,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
20941
22951
|
const origin = `${this.id}-${meth}`;
|
|
20942
22952
|
log.trace(origin);
|
|
20943
22953
|
|
|
22954
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
22955
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
22956
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
22957
|
+
return callback(null, errorObj);
|
|
22958
|
+
}
|
|
22959
|
+
|
|
20944
22960
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
20945
22961
|
if (body === undefined || body === null || body === '') {
|
|
20946
22962
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21026,6 +23042,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21026
23042
|
const origin = `${this.id}-${meth}`;
|
|
21027
23043
|
log.trace(origin);
|
|
21028
23044
|
|
|
23045
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23046
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23047
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23048
|
+
return callback(null, errorObj);
|
|
23049
|
+
}
|
|
23050
|
+
|
|
21029
23051
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21030
23052
|
if (body === undefined || body === null || body === '') {
|
|
21031
23053
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21111,6 +23133,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21111
23133
|
const origin = `${this.id}-${meth}`;
|
|
21112
23134
|
log.trace(origin);
|
|
21113
23135
|
|
|
23136
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23137
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23138
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23139
|
+
return callback(null, errorObj);
|
|
23140
|
+
}
|
|
23141
|
+
|
|
21114
23142
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21115
23143
|
if (body === undefined || body === null || body === '') {
|
|
21116
23144
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21196,6 +23224,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21196
23224
|
const origin = `${this.id}-${meth}`;
|
|
21197
23225
|
log.trace(origin);
|
|
21198
23226
|
|
|
23227
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23228
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23229
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23230
|
+
return callback(null, errorObj);
|
|
23231
|
+
}
|
|
23232
|
+
|
|
21199
23233
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21200
23234
|
if (body === undefined || body === null || body === '') {
|
|
21201
23235
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21281,6 +23315,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21281
23315
|
const origin = `${this.id}-${meth}`;
|
|
21282
23316
|
log.trace(origin);
|
|
21283
23317
|
|
|
23318
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23319
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23320
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23321
|
+
return callback(null, errorObj);
|
|
23322
|
+
}
|
|
23323
|
+
|
|
21284
23324
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21285
23325
|
if (body === undefined || body === null || body === '') {
|
|
21286
23326
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21366,6 +23406,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21366
23406
|
const origin = `${this.id}-${meth}`;
|
|
21367
23407
|
log.trace(origin);
|
|
21368
23408
|
|
|
23409
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23410
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23411
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23412
|
+
return callback(null, errorObj);
|
|
23413
|
+
}
|
|
23414
|
+
|
|
21369
23415
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21370
23416
|
if (body === undefined || body === null || body === '') {
|
|
21371
23417
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21451,6 +23497,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21451
23497
|
const origin = `${this.id}-${meth}`;
|
|
21452
23498
|
log.trace(origin);
|
|
21453
23499
|
|
|
23500
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23501
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23502
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23503
|
+
return callback(null, errorObj);
|
|
23504
|
+
}
|
|
23505
|
+
|
|
21454
23506
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21455
23507
|
if (body === undefined || body === null || body === '') {
|
|
21456
23508
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21536,6 +23588,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21536
23588
|
const origin = `${this.id}-${meth}`;
|
|
21537
23589
|
log.trace(origin);
|
|
21538
23590
|
|
|
23591
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23592
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23593
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23594
|
+
return callback(null, errorObj);
|
|
23595
|
+
}
|
|
23596
|
+
|
|
21539
23597
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21540
23598
|
if (body === undefined || body === null || body === '') {
|
|
21541
23599
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21621,6 +23679,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21621
23679
|
const origin = `${this.id}-${meth}`;
|
|
21622
23680
|
log.trace(origin);
|
|
21623
23681
|
|
|
23682
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23683
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23684
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23685
|
+
return callback(null, errorObj);
|
|
23686
|
+
}
|
|
23687
|
+
|
|
21624
23688
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21625
23689
|
if (body === undefined || body === null || body === '') {
|
|
21626
23690
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21706,6 +23770,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21706
23770
|
const origin = `${this.id}-${meth}`;
|
|
21707
23771
|
log.trace(origin);
|
|
21708
23772
|
|
|
23773
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23774
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23775
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23776
|
+
return callback(null, errorObj);
|
|
23777
|
+
}
|
|
23778
|
+
|
|
21709
23779
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21710
23780
|
if (body === undefined || body === null || body === '') {
|
|
21711
23781
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21791,6 +23861,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21791
23861
|
const origin = `${this.id}-${meth}`;
|
|
21792
23862
|
log.trace(origin);
|
|
21793
23863
|
|
|
23864
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23865
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23866
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23867
|
+
return callback(null, errorObj);
|
|
23868
|
+
}
|
|
23869
|
+
|
|
21794
23870
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21795
23871
|
if (body === undefined || body === null || body === '') {
|
|
21796
23872
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21876,6 +23952,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21876
23952
|
const origin = `${this.id}-${meth}`;
|
|
21877
23953
|
log.trace(origin);
|
|
21878
23954
|
|
|
23955
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
23956
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
23957
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
23958
|
+
return callback(null, errorObj);
|
|
23959
|
+
}
|
|
23960
|
+
|
|
21879
23961
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21880
23962
|
if (body === undefined || body === null || body === '') {
|
|
21881
23963
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -21961,6 +24043,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
21961
24043
|
const origin = `${this.id}-${meth}`;
|
|
21962
24044
|
log.trace(origin);
|
|
21963
24045
|
|
|
24046
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24047
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24048
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24049
|
+
return callback(null, errorObj);
|
|
24050
|
+
}
|
|
24051
|
+
|
|
21964
24052
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
21965
24053
|
if (body === undefined || body === null || body === '') {
|
|
21966
24054
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22046,6 +24134,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22046
24134
|
const origin = `${this.id}-${meth}`;
|
|
22047
24135
|
log.trace(origin);
|
|
22048
24136
|
|
|
24137
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24138
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24139
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24140
|
+
return callback(null, errorObj);
|
|
24141
|
+
}
|
|
24142
|
+
|
|
22049
24143
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22050
24144
|
if (body === undefined || body === null || body === '') {
|
|
22051
24145
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22131,6 +24225,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22131
24225
|
const origin = `${this.id}-${meth}`;
|
|
22132
24226
|
log.trace(origin);
|
|
22133
24227
|
|
|
24228
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24229
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24230
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24231
|
+
return callback(null, errorObj);
|
|
24232
|
+
}
|
|
24233
|
+
|
|
22134
24234
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22135
24235
|
if (body === undefined || body === null || body === '') {
|
|
22136
24236
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22216,6 +24316,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22216
24316
|
const origin = `${this.id}-${meth}`;
|
|
22217
24317
|
log.trace(origin);
|
|
22218
24318
|
|
|
24319
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24320
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24321
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24322
|
+
return callback(null, errorObj);
|
|
24323
|
+
}
|
|
24324
|
+
|
|
22219
24325
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22220
24326
|
if (body === undefined || body === null || body === '') {
|
|
22221
24327
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22301,6 +24407,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22301
24407
|
const origin = `${this.id}-${meth}`;
|
|
22302
24408
|
log.trace(origin);
|
|
22303
24409
|
|
|
24410
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24411
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24412
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24413
|
+
return callback(null, errorObj);
|
|
24414
|
+
}
|
|
24415
|
+
|
|
22304
24416
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22305
24417
|
if (body === undefined || body === null || body === '') {
|
|
22306
24418
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22386,6 +24498,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22386
24498
|
const origin = `${this.id}-${meth}`;
|
|
22387
24499
|
log.trace(origin);
|
|
22388
24500
|
|
|
24501
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24502
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24503
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24504
|
+
return callback(null, errorObj);
|
|
24505
|
+
}
|
|
24506
|
+
|
|
22389
24507
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22390
24508
|
if (body === undefined || body === null || body === '') {
|
|
22391
24509
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22471,6 +24589,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22471
24589
|
const origin = `${this.id}-${meth}`;
|
|
22472
24590
|
log.trace(origin);
|
|
22473
24591
|
|
|
24592
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24593
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24594
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24595
|
+
return callback(null, errorObj);
|
|
24596
|
+
}
|
|
24597
|
+
|
|
22474
24598
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22475
24599
|
if (body === undefined || body === null || body === '') {
|
|
22476
24600
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22556,6 +24680,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22556
24680
|
const origin = `${this.id}-${meth}`;
|
|
22557
24681
|
log.trace(origin);
|
|
22558
24682
|
|
|
24683
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24684
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24685
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24686
|
+
return callback(null, errorObj);
|
|
24687
|
+
}
|
|
24688
|
+
|
|
22559
24689
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22560
24690
|
if (body === undefined || body === null || body === '') {
|
|
22561
24691
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22641,6 +24771,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22641
24771
|
const origin = `${this.id}-${meth}`;
|
|
22642
24772
|
log.trace(origin);
|
|
22643
24773
|
|
|
24774
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24775
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24776
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24777
|
+
return callback(null, errorObj);
|
|
24778
|
+
}
|
|
24779
|
+
|
|
22644
24780
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22645
24781
|
if (body === undefined || body === null || body === '') {
|
|
22646
24782
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22726,6 +24862,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22726
24862
|
const origin = `${this.id}-${meth}`;
|
|
22727
24863
|
log.trace(origin);
|
|
22728
24864
|
|
|
24865
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24866
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24867
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24868
|
+
return callback(null, errorObj);
|
|
24869
|
+
}
|
|
24870
|
+
|
|
22729
24871
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22730
24872
|
if (body === undefined || body === null || body === '') {
|
|
22731
24873
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22811,6 +24953,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22811
24953
|
const origin = `${this.id}-${meth}`;
|
|
22812
24954
|
log.trace(origin);
|
|
22813
24955
|
|
|
24956
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
24957
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
24958
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
24959
|
+
return callback(null, errorObj);
|
|
24960
|
+
}
|
|
24961
|
+
|
|
22814
24962
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22815
24963
|
if (body === undefined || body === null || body === '') {
|
|
22816
24964
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22896,6 +25044,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22896
25044
|
const origin = `${this.id}-${meth}`;
|
|
22897
25045
|
log.trace(origin);
|
|
22898
25046
|
|
|
25047
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25048
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25049
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25050
|
+
return callback(null, errorObj);
|
|
25051
|
+
}
|
|
25052
|
+
|
|
22899
25053
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22900
25054
|
if (body === undefined || body === null || body === '') {
|
|
22901
25055
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -22981,6 +25135,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
22981
25135
|
const origin = `${this.id}-${meth}`;
|
|
22982
25136
|
log.trace(origin);
|
|
22983
25137
|
|
|
25138
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25139
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25140
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25141
|
+
return callback(null, errorObj);
|
|
25142
|
+
}
|
|
25143
|
+
|
|
22984
25144
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
22985
25145
|
if (body === undefined || body === null || body === '') {
|
|
22986
25146
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23066,6 +25226,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23066
25226
|
const origin = `${this.id}-${meth}`;
|
|
23067
25227
|
log.trace(origin);
|
|
23068
25228
|
|
|
25229
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25230
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25231
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25232
|
+
return callback(null, errorObj);
|
|
25233
|
+
}
|
|
25234
|
+
|
|
23069
25235
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23070
25236
|
if (body === undefined || body === null || body === '') {
|
|
23071
25237
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23151,6 +25317,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23151
25317
|
const origin = `${this.id}-${meth}`;
|
|
23152
25318
|
log.trace(origin);
|
|
23153
25319
|
|
|
25320
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25321
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25322
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25323
|
+
return callback(null, errorObj);
|
|
25324
|
+
}
|
|
25325
|
+
|
|
23154
25326
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23155
25327
|
if (body === undefined || body === null || body === '') {
|
|
23156
25328
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23236,6 +25408,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23236
25408
|
const origin = `${this.id}-${meth}`;
|
|
23237
25409
|
log.trace(origin);
|
|
23238
25410
|
|
|
25411
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25412
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25413
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25414
|
+
return callback(null, errorObj);
|
|
25415
|
+
}
|
|
25416
|
+
|
|
23239
25417
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23240
25418
|
if (body === undefined || body === null || body === '') {
|
|
23241
25419
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23321,6 +25499,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23321
25499
|
const origin = `${this.id}-${meth}`;
|
|
23322
25500
|
log.trace(origin);
|
|
23323
25501
|
|
|
25502
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25503
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25504
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25505
|
+
return callback(null, errorObj);
|
|
25506
|
+
}
|
|
25507
|
+
|
|
23324
25508
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23325
25509
|
if (body === undefined || body === null || body === '') {
|
|
23326
25510
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23406,6 +25590,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23406
25590
|
const origin = `${this.id}-${meth}`;
|
|
23407
25591
|
log.trace(origin);
|
|
23408
25592
|
|
|
25593
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25594
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25595
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25596
|
+
return callback(null, errorObj);
|
|
25597
|
+
}
|
|
25598
|
+
|
|
23409
25599
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23410
25600
|
if (body === undefined || body === null || body === '') {
|
|
23411
25601
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23491,6 +25681,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23491
25681
|
const origin = `${this.id}-${meth}`;
|
|
23492
25682
|
log.trace(origin);
|
|
23493
25683
|
|
|
25684
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25685
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25686
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25687
|
+
return callback(null, errorObj);
|
|
25688
|
+
}
|
|
25689
|
+
|
|
23494
25690
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23495
25691
|
if (body === undefined || body === null || body === '') {
|
|
23496
25692
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23576,6 +25772,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23576
25772
|
const origin = `${this.id}-${meth}`;
|
|
23577
25773
|
log.trace(origin);
|
|
23578
25774
|
|
|
25775
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25776
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25777
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25778
|
+
return callback(null, errorObj);
|
|
25779
|
+
}
|
|
25780
|
+
|
|
23579
25781
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23580
25782
|
if (body === undefined || body === null || body === '') {
|
|
23581
25783
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23661,6 +25863,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23661
25863
|
const origin = `${this.id}-${meth}`;
|
|
23662
25864
|
log.trace(origin);
|
|
23663
25865
|
|
|
25866
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25867
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25868
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25869
|
+
return callback(null, errorObj);
|
|
25870
|
+
}
|
|
25871
|
+
|
|
23664
25872
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23665
25873
|
if (body === undefined || body === null || body === '') {
|
|
23666
25874
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23746,6 +25954,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23746
25954
|
const origin = `${this.id}-${meth}`;
|
|
23747
25955
|
log.trace(origin);
|
|
23748
25956
|
|
|
25957
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
25958
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
25959
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
25960
|
+
return callback(null, errorObj);
|
|
25961
|
+
}
|
|
25962
|
+
|
|
23749
25963
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23750
25964
|
if (body === undefined || body === null || body === '') {
|
|
23751
25965
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23831,6 +26045,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23831
26045
|
const origin = `${this.id}-${meth}`;
|
|
23832
26046
|
log.trace(origin);
|
|
23833
26047
|
|
|
26048
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26049
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26050
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26051
|
+
return callback(null, errorObj);
|
|
26052
|
+
}
|
|
26053
|
+
|
|
23834
26054
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23835
26055
|
if (body === undefined || body === null || body === '') {
|
|
23836
26056
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -23916,6 +26136,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
23916
26136
|
const origin = `${this.id}-${meth}`;
|
|
23917
26137
|
log.trace(origin);
|
|
23918
26138
|
|
|
26139
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26140
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26141
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26142
|
+
return callback(null, errorObj);
|
|
26143
|
+
}
|
|
26144
|
+
|
|
23919
26145
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
23920
26146
|
if (body === undefined || body === null || body === '') {
|
|
23921
26147
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24001,6 +26227,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24001
26227
|
const origin = `${this.id}-${meth}`;
|
|
24002
26228
|
log.trace(origin);
|
|
24003
26229
|
|
|
26230
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26231
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26232
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26233
|
+
return callback(null, errorObj);
|
|
26234
|
+
}
|
|
26235
|
+
|
|
24004
26236
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24005
26237
|
if (body === undefined || body === null || body === '') {
|
|
24006
26238
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24086,6 +26318,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24086
26318
|
const origin = `${this.id}-${meth}`;
|
|
24087
26319
|
log.trace(origin);
|
|
24088
26320
|
|
|
26321
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26322
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26323
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26324
|
+
return callback(null, errorObj);
|
|
26325
|
+
}
|
|
26326
|
+
|
|
24089
26327
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24090
26328
|
if (body === undefined || body === null || body === '') {
|
|
24091
26329
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24171,6 +26409,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24171
26409
|
const origin = `${this.id}-${meth}`;
|
|
24172
26410
|
log.trace(origin);
|
|
24173
26411
|
|
|
26412
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26413
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26414
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26415
|
+
return callback(null, errorObj);
|
|
26416
|
+
}
|
|
26417
|
+
|
|
24174
26418
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24175
26419
|
if (body === undefined || body === null || body === '') {
|
|
24176
26420
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24256,6 +26500,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24256
26500
|
const origin = `${this.id}-${meth}`;
|
|
24257
26501
|
log.trace(origin);
|
|
24258
26502
|
|
|
26503
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26504
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26505
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26506
|
+
return callback(null, errorObj);
|
|
26507
|
+
}
|
|
26508
|
+
|
|
24259
26509
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24260
26510
|
if (body === undefined || body === null || body === '') {
|
|
24261
26511
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24341,6 +26591,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24341
26591
|
const origin = `${this.id}-${meth}`;
|
|
24342
26592
|
log.trace(origin);
|
|
24343
26593
|
|
|
26594
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26595
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26596
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26597
|
+
return callback(null, errorObj);
|
|
26598
|
+
}
|
|
26599
|
+
|
|
24344
26600
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24345
26601
|
if (body === undefined || body === null || body === '') {
|
|
24346
26602
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24426,6 +26682,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24426
26682
|
const origin = `${this.id}-${meth}`;
|
|
24427
26683
|
log.trace(origin);
|
|
24428
26684
|
|
|
26685
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26686
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26687
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26688
|
+
return callback(null, errorObj);
|
|
26689
|
+
}
|
|
26690
|
+
|
|
24429
26691
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24430
26692
|
if (body === undefined || body === null || body === '') {
|
|
24431
26693
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24511,6 +26773,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24511
26773
|
const origin = `${this.id}-${meth}`;
|
|
24512
26774
|
log.trace(origin);
|
|
24513
26775
|
|
|
26776
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26777
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26778
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26779
|
+
return callback(null, errorObj);
|
|
26780
|
+
}
|
|
26781
|
+
|
|
24514
26782
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24515
26783
|
if (body === undefined || body === null || body === '') {
|
|
24516
26784
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24596,6 +26864,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24596
26864
|
const origin = `${this.id}-${meth}`;
|
|
24597
26865
|
log.trace(origin);
|
|
24598
26866
|
|
|
26867
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26868
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26869
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26870
|
+
return callback(null, errorObj);
|
|
26871
|
+
}
|
|
26872
|
+
|
|
24599
26873
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24600
26874
|
if (body === undefined || body === null || body === '') {
|
|
24601
26875
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24681,6 +26955,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24681
26955
|
const origin = `${this.id}-${meth}`;
|
|
24682
26956
|
log.trace(origin);
|
|
24683
26957
|
|
|
26958
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
26959
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
26960
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
26961
|
+
return callback(null, errorObj);
|
|
26962
|
+
}
|
|
26963
|
+
|
|
24684
26964
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24685
26965
|
if (body === undefined || body === null || body === '') {
|
|
24686
26966
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24766,6 +27046,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24766
27046
|
const origin = `${this.id}-${meth}`;
|
|
24767
27047
|
log.trace(origin);
|
|
24768
27048
|
|
|
27049
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27050
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27051
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27052
|
+
return callback(null, errorObj);
|
|
27053
|
+
}
|
|
27054
|
+
|
|
24769
27055
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24770
27056
|
if (body === undefined || body === null || body === '') {
|
|
24771
27057
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24851,6 +27137,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24851
27137
|
const origin = `${this.id}-${meth}`;
|
|
24852
27138
|
log.trace(origin);
|
|
24853
27139
|
|
|
27140
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27141
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27142
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27143
|
+
return callback(null, errorObj);
|
|
27144
|
+
}
|
|
27145
|
+
|
|
24854
27146
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24855
27147
|
if (body === undefined || body === null || body === '') {
|
|
24856
27148
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -24936,6 +27228,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
24936
27228
|
const origin = `${this.id}-${meth}`;
|
|
24937
27229
|
log.trace(origin);
|
|
24938
27230
|
|
|
27231
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27232
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27233
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27234
|
+
return callback(null, errorObj);
|
|
27235
|
+
}
|
|
27236
|
+
|
|
24939
27237
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
24940
27238
|
if (body === undefined || body === null || body === '') {
|
|
24941
27239
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -25021,6 +27319,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
25021
27319
|
const origin = `${this.id}-${meth}`;
|
|
25022
27320
|
log.trace(origin);
|
|
25023
27321
|
|
|
27322
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27323
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27324
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27325
|
+
return callback(null, errorObj);
|
|
27326
|
+
}
|
|
27327
|
+
|
|
25024
27328
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
25025
27329
|
if (body === undefined || body === null || body === '') {
|
|
25026
27330
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -25106,6 +27410,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
25106
27410
|
const origin = `${this.id}-${meth}`;
|
|
25107
27411
|
log.trace(origin);
|
|
25108
27412
|
|
|
27413
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27414
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27415
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27416
|
+
return callback(null, errorObj);
|
|
27417
|
+
}
|
|
27418
|
+
|
|
25109
27419
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
25110
27420
|
if (body === undefined || body === null || body === '') {
|
|
25111
27421
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -25191,6 +27501,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
25191
27501
|
const origin = `${this.id}-${meth}`;
|
|
25192
27502
|
log.trace(origin);
|
|
25193
27503
|
|
|
27504
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27505
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27506
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27507
|
+
return callback(null, errorObj);
|
|
27508
|
+
}
|
|
27509
|
+
|
|
25194
27510
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
25195
27511
|
if (body === undefined || body === null || body === '') {
|
|
25196
27512
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|
|
@@ -25276,6 +27592,12 @@ class CheckpointManagement extends AdapterBaseCl {
|
|
|
25276
27592
|
const origin = `${this.id}-${meth}`;
|
|
25277
27593
|
log.trace(origin);
|
|
25278
27594
|
|
|
27595
|
+
if (this.suspended && this.suspendMode === 'error') {
|
|
27596
|
+
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'AD.600', [], null, null, null);
|
|
27597
|
+
log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
|
|
27598
|
+
return callback(null, errorObj);
|
|
27599
|
+
}
|
|
27600
|
+
|
|
25279
27601
|
/* HERE IS WHERE YOU VALIDATE DATA */
|
|
25280
27602
|
if (body === undefined || body === null || body === '') {
|
|
25281
27603
|
const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['body'], null, null, null);
|