aboutsummaryrefslogtreecommitdiffstats
path: root/ajsc-aai/src/main/java/org/openecomp/aai/logging/ErrorLogHelper.java
blob: baa9f5f9667915e0237286371d6c38de0a2316cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/*-
 * ============LICENSE_START=======================================================
 * org.openecomp.aai
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.aai.logging;

import java.io.FileInputStream;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.UUID;

import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response.Status;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;

import org.apache.commons.lang.StringUtils;
import org.openecomp.aai.exceptions.AAIException;
import org.openecomp.aai.util.AAIConstants;
import org.openecomp.aai.util.MapperUtil;

/**
 * 
 * This classes loads the application error properties file
 * and provides a method that returns an ErrorObject 
 * 
 */

public class ErrorLogHelper {

	private static AAILogger aaiLogger = new AAILogger(ErrorLogHelper.class.getName());
	private static Properties props = new Properties();
	private static boolean isLoaded = false;
	public static String errorPropertiesPath = null;

	/**
	 * Sets the error props path.
	 *
	 * @param errorPropsPath the new error props path
	 */
	public static void setErrorPropsPath(String errorPropsPath) {
		if(errorPropertiesPath == null || errorPropertiesPath.length() == 0){
			errorPropertiesPath = errorPropsPath;
		}
	}

	/**
	 * Load properties.
	 *
	 * @throws Exception the exception
	 */
	public static void loadProperties() throws Exception{
		LogLine logline = new LogLine();
		logline.init("aaigen", UUID.randomUUID().toString(), "AAI-INIT", "loading error properties");
		if (!isLoaded) {	

			if(errorPropertiesPath == null ) {
				errorPropertiesPath = AAIConstants.AAI_HOME_ETC_APP_PROPERTIES + "error.properties";  // set default if not configured
			}
			logline.add("file", errorPropertiesPath);
			String filepath =  errorPropertiesPath; 

			if(filepath.startsWith("error")) {
				props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream(filepath)); 
			} else {
				FileInputStream fis = new FileInputStream(filepath);
				props.load(fis);
				fis.close();
			}
			isLoaded = true;
			aaiLogger.info(logline, true, "0");

		}
	}

	/**
	 * Gets the error object.
	 *
	 * @param key the key
	 * @return the error object
	 */
	/* method that returns an error object for a key (error code) based 
	 * on the error.properties file
	 * @param key - of the form "AAI_nnnn" that has an entry in the error.properties file
	 * @return ErrorObject 
	 */
	public static ErrorObject getErrorObject(String key){
		return getErrorObject(key, null);
	}

	/**
	 * Gets the error object.
	 *
	 * @param key the key
	 * @param details the details
	 * @return the error object
	 */
	/* method that returns an error object for a key (error code) based 
	 * on the error.properties file
	 * @param key - of the form "AAI_nnnn" that has an entry in the error.properties file
	 * @param details - set the details of the errorObject to this
	 * @return ErrorObject 
	 */
	public static ErrorObject getErrorObject(String key, String details){
		ErrorObject errorObject = new ErrorObject();
		try {
			if (!isLoaded) {
				// The properties were not successfully loaded, try again
				loadProperties();
			}
			if ((null != key) && (0 != key.trim().length())) {

				String value = "";
				value = (String) props.get(key);
				if ((null == value) || (0 == value.trim().length())) {
					throw new Exception("getErrorObject():Value is null for key: " + key);
				} else {

					String errorProperties[] = value.split(":");

					errorObject.setDisposition(errorProperties[0].trim());
					errorObject.setCategory(errorProperties[1].trim());
					errorObject.setSeverity(errorProperties[2].trim());
					errorObject.setErrorCode(errorProperties[3].trim());
					errorObject.setHTTPResponseCode(errorProperties[4].trim());
					if (errorProperties.length != 7) {
						throw new Exception("error.properties line for "+key+" is improperly formatted");
					} else {
						errorObject.setRESTErrorCode(errorProperties[5].trim());
						errorObject.setErrorText(errorProperties[6].trim());
					}
					errorObject.setDetails(details);
				}
			} else {
				throw new Exception("getErrorObject():Key is null");
			}

		} catch (Exception e) {
			errorObject.setDisposition("5");
			errorObject.setCategory("4");
			errorObject.setSeverity("FATAL");
			errorObject.setErrorCode("4004");
			errorObject.setHTTPResponseCode(Status.INTERNAL_SERVER_ERROR); // 500
			errorObject.setRESTErrorCode("3002");
			if ( e.getCause() != null && e.getCause().getMessage() != null)
				errorObject.setErrorText("Error reading/parsing the error properties file trying to get error object for " + key + ":" + e.getMessage() + ":" + e.getCause().getMessage());
			else
				errorObject.setErrorText("Error reading/parsing the error properties file trying to get error object for " + key + ":" + e.getMessage());		
		}
		return errorObject;
	}

	/**
	 * Determines whether category is policy or not.  If policy (1), this is a POL error, else it's a SVC error.
	 * The AAIRESTException may contain a different ErrorObject than that created with the REST error key.
	 * This allows lower level exception detail to be returned to the client to help troubleshoot the problem.
	 * If no error object is embedded in the AAIException, one will be created using the error object from the AAIException.
	 * @param are must have a restError value whose numeric value must match what should be returned in the REST API
	 * @param variables optional list of variables to flesh out text in error string
	 * @param logline LogLine
	 * @return appropriately formatted JSON response per the REST API spec.
	 * @deprecated
	 */
	public static String getRESTAPIErrorResponse(AAIException are, ArrayList<String> variables, LogLine logline) {
		List<MediaType> acceptHeaders = new ArrayList<MediaType>();
		acceptHeaders.add(MediaType.APPLICATION_JSON_TYPE);

		return getRESTAPIErrorResponse(acceptHeaders, are, variables, logline);
	}

	/**
	 * Determines whether category is policy or not.  If policy (1), this is a POL error, else it's a SVC error.
	 * The AAIRESTException may contain a different ErrorObject than that created with the REST error key.
	 * This allows lower level exception detail to be returned to the client to help troubleshoot the problem.
	 * If no error object is embedded in the AAIException, one will be created using the error object from the AAIException.
	 *
	 * @param acceptHeadersOrig the accept headers orig
	 * @param are must have a restError value whose numeric value must match what should be returned in the REST API
	 * @param variables optional list of variables to flesh out text in error string
	 * @param logline LogLine
	 * @return appropriately formatted JSON response per the REST API spec.
	 */
	public static String getRESTAPIErrorResponse(List<MediaType> acceptHeadersOrig, AAIException are, ArrayList<String> variables, LogLine logline) {;


		StringBuilder text = new StringBuilder();
		String response = null;
		
		List<MediaType> acceptHeaders = new ArrayList<MediaType>();
		// we might have an exception but no accept header, so we'll set default to JSON
		boolean foundValidAcceptHeader = false;
		for (MediaType mt : acceptHeadersOrig) {
			if (MediaType.APPLICATION_XML_TYPE.isCompatible(mt) ||
					MediaType.APPLICATION_JSON_TYPE.isCompatible(mt)) {
				acceptHeaders.add(mt);
				foundValidAcceptHeader = true;
			}
		}
		if (foundValidAcceptHeader == false) { 
			// override the exception, client needs to set an appropriate Accept header
			are = new AAIException("AAI_4014");
			acceptHeaders.add(MediaType.APPLICATION_JSON_TYPE);
		}

		ErrorObject eo = are.getErrorObject();
		
		int restErrorCode = Integer.parseInt(eo.getRESTErrorCode());
		ErrorObject restErrorObject = ErrorLogHelper.getErrorObject("AAI_"+restErrorCode);		
		if (restErrorObject == null) {
			restErrorObject = eo;
		}
		text.append(restErrorObject.getErrorText());
		
		
		
		// We want to always append the (msg=%n) (ec=%n+1) to the text, but have to find value of n
		// This assumes that the variables in the ArrayList, which might be more than are needed to flesh out the
		// error, are ordered based on the error string.
		int localDataIndex = StringUtils.countMatches(restErrorObject.getErrorText(), "%");
		text.append(" (msg=%").append(localDataIndex+1).append(") (ec=%").append(localDataIndex+2).append(")");

		if (variables == null) 
		{
			variables = new ArrayList<String>();
		}
	
		if (variables.size() < localDataIndex) {
			aaiLogger.error(ErrorLogHelper.getErrorObject("AAI_4011", "data missing for rest error"), logline, null);
			while (variables.size() < localDataIndex) {
				variables.add("null");
			}
		}
		
		// This will put the error code and error text into the right positions
		if (eo.getDetails() == null || eo.getDetails().length() == 0) {
			variables.add(localDataIndex++, eo.getErrorText());
		}
		else {
			variables.add(localDataIndex++, eo.getErrorText() + ":" + eo.getDetails());
		}
		variables.add(localDataIndex, eo.getErrorCodeString());
		
		for (MediaType mediaType : acceptHeaders) {
		if (MediaType.APPLICATION_XML_TYPE.isCompatible(mediaType)) {
				JAXBContext context = null;
				try {
					if(eo.getCategory().equals("1")) {
						
						context = JAXBContext.newInstance(org.openecomp.aai.domain.restPolicyException.Fault.class);
						Marshaller m = context.createMarshaller();
						m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
						m.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");
						
						org.openecomp.aai.domain.restPolicyException.ObjectFactory factory = new org.openecomp.aai.domain.restPolicyException.ObjectFactory();
						org.openecomp.aai.domain.restPolicyException.Fault fault = factory.createFault();
						org.openecomp.aai.domain.restPolicyException.Fault.RequestError requestError = factory.createFaultRequestError();
						org.openecomp.aai.domain.restPolicyException.Fault.RequestError.PolicyException policyException = factory.createFaultRequestErrorPolicyException();
						org.openecomp.aai.domain.restPolicyException.Fault.RequestError.PolicyException.Variables polvariables = factory.createFaultRequestErrorPolicyExceptionVariables();
						
						policyException.setMessageId("POL" + eo.getRESTErrorCode());
						policyException.setText(text.toString());
						for (int i=0;i<variables.size();i++)
						{
							polvariables.getVariable().add(variables.get(i));
						}
						policyException.setVariables(polvariables);
						requestError.setPolicyException(policyException);
						fault.setRequestError(requestError);
						
						StringWriter sw = new StringWriter();
						m.marshal(fault, sw);

						response = sw.toString();

					} else {
						
						context = JAXBContext.newInstance(org.openecomp.aai.domain.restServiceException.Fault.class);
						Marshaller m = context.createMarshaller();
						m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
						m.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");
						
						org.openecomp.aai.domain.restServiceException.ObjectFactory factory = new org.openecomp.aai.domain.restServiceException.ObjectFactory();
						org.openecomp.aai.domain.restServiceException.Fault fault = factory.createFault();
						org.openecomp.aai.domain.restServiceException.Fault.RequestError requestError = factory.createFaultRequestError();
						org.openecomp.aai.domain.restServiceException.Fault.RequestError.ServiceException serviceException = factory.createFaultRequestErrorServiceException();
						org.openecomp.aai.domain.restServiceException.Fault.RequestError.ServiceException.Variables svcvariables = factory.createFaultRequestErrorServiceExceptionVariables();
						serviceException.setMessageId("SVC" + eo.getRESTErrorCode());
						serviceException.setText(text.toString());
						for (int i=0;i<variables.size();i++)
						{
							svcvariables.getVariable().add(variables.get(i));
						}
						serviceException.setVariables(svcvariables);
						requestError.setServiceException(serviceException);
						fault.setRequestError(requestError);

						StringWriter sw = new StringWriter();
						m.marshal(fault, sw);

						response = sw.toString();

					}
				} catch (Exception ex) {
					restErrorObject.setDetails("We were unable to create a rest exception to return on an API because of a parsing error");
					aaiLogger.error(restErrorObject, logline, ex);
				}
			}
		else  {		
			try {
				if(eo.getCategory().equals("1")) {
					org.openecomp.aai.domain.restPolicyException.RESTResponse restresp = new org.openecomp.aai.domain.restPolicyException.RESTResponse();
					org.openecomp.aai.domain.restPolicyException.RequestError reqerr = new org.openecomp.aai.domain.restPolicyException.RequestError();
					org.openecomp.aai.domain.restPolicyException.PolicyException polexc = new org.openecomp.aai.domain.restPolicyException.PolicyException();
					polexc.setMessageId("POL" + eo.getRESTErrorCode());
					polexc.setText(text.toString());
					polexc.setVariables(variables);
					reqerr.setPolicyException(polexc);
					restresp.setRequestError(reqerr);
					response = (MapperUtil.writeAsJSONString((Object) restresp));
	
				} else {
					org.openecomp.aai.domain.restServiceException.RESTResponse restresp = new org.openecomp.aai.domain.restServiceException.RESTResponse();
					org.openecomp.aai.domain.restServiceException.RequestError reqerr = new org.openecomp.aai.domain.restServiceException.RequestError();
					org.openecomp.aai.domain.restServiceException.ServiceException svcexc = new org.openecomp.aai.domain.restServiceException.ServiceException();
					svcexc.setMessageId("SVC" + eo.getRESTErrorCode());
					svcexc.setText(text.toString());
					svcexc.setVariables(variables);
					reqerr.setServiceException(svcexc);
					restresp.setRequestError(reqerr);
					response = (MapperUtil.writeAsJSONString((Object) restresp));
				}
			} catch (AAIException ex) {
				restErrorObject.setDetails("We were unable to create a rest exception to return on an API because of a parsing error");
				aaiLogger.error(restErrorObject, logline, ex);
			}
		}
		}


		return response;
	}

	/**
	 * Gets the RESTAPI error response with logging.
	 *
	 * @param acceptHeadersOrig the accept headers orig
	 * @param are the are
	 * @param variables the variables
	 * @param logline the logline
	 * @return the RESTAPI error response with logging
	 */
	public static String getRESTAPIErrorResponseWithLogging(List<MediaType> acceptHeadersOrig, AAIException are, ArrayList<String> variables, LogLine logline) {;
		String response = ErrorLogHelper.getRESTAPIErrorResponse(acceptHeadersOrig, are, variables, logline);
		
		aaiLogger.error(are.getErrorObject(), logline, are);
		aaiLogger.info(logline, false, are.getErrorObject().getErrorCodeString());
		
		return response;
		
	}
	
	/**
	 * Gets the RESTAPI info response.
	 *
	 * @param acceptHeaders the accept headers
	 * @param areList the are list
	 * @param logline the logline
	 * @return the RESTAPI info response
	 */
	public static Object getRESTAPIInfoResponse(List<MediaType> acceptHeaders, HashMap<AAIException,ArrayList<String>> areList, LogLine logline) {
		
		Object respObj = null;

		org.openecomp.aai.domain.restResponseInfo.ObjectFactory factory = new org.openecomp.aai.domain.restResponseInfo.ObjectFactory();
		org.openecomp.aai.domain.restResponseInfo.Info info = factory.createInfo();
		org.openecomp.aai.domain.restResponseInfo.Info.ResponseMessages responseMessages = factory.createInfoResponseMessages();
		Iterator<Map.Entry<AAIException, ArrayList<String>>> it = areList.entrySet().iterator();
		while (it.hasNext()) {
			Map.Entry<AAIException,ArrayList<String>> pair = (Map.Entry<AAIException, ArrayList<String>>)it.next();
			AAIException are = pair.getKey();
			ArrayList<String> variables = pair.getValue();
			//System.out.println(pair.getKey() + " = " + pair.getValue());

			StringBuilder text = new StringBuilder();

			ErrorObject eo = are.getErrorObject();

			int restErrorCode = Integer.parseInt(eo.getRESTErrorCode());
			ErrorObject restErrorObject = ErrorLogHelper.getErrorObject("AAI_"+String.format("%04d", restErrorCode));		
			if (restErrorObject == null) {
				restErrorObject = eo;
			}
			text.append(restErrorObject.getErrorText());

			// We want to always append the (msg=%n) (ec=%n+1) to the text, but have to find value of n
			// This assumes that the variables in the ArrayList, which might be more than are needed to flesh out the
			// error, are ordered based on the error string.
			int localDataIndex = StringUtils.countMatches(restErrorObject.getErrorText(), "%");
			text.append(" (msg=%").append(localDataIndex+1).append(") (rc=%").append(localDataIndex+2).append(")");

			if (variables == null) 
			{
				variables = new ArrayList<String>();
			}

			if (variables.size() < localDataIndex) {
				aaiLogger.error(ErrorLogHelper.getErrorObject("AAI_4011", "data missing for rest error"), logline, null);
				while (variables.size() < localDataIndex) {
					variables.add("null");
				}
			}

			// This will put the error code and error text into the right positions
			if (eo.getDetails() == null) {
				variables.add(localDataIndex++, eo.getErrorText());
			}
			else {
				variables.add(localDataIndex++, eo.getErrorText() + ":" + eo.getDetails());
			}
			variables.add(localDataIndex, eo.getErrorCodeString());
		
			try { 
				org.openecomp.aai.domain.restResponseInfo.Info.ResponseMessages.ResponseMessage responseMessage = factory.createInfoResponseMessagesResponseMessage();
				org.openecomp.aai.domain.restResponseInfo.Info.ResponseMessages.ResponseMessage.Variables infovariables = factory.createInfoResponseMessagesResponseMessageVariables();

				responseMessage.setMessageId("INF" + eo.getRESTErrorCode());
				responseMessage.setText(text.toString());
				for (int i=0;i<variables.size();i++)
				{
					infovariables.getVariable().add(variables.get(i));
				}

				responseMessage.setVariables(infovariables);
				responseMessages.getResponseMessage().add(responseMessage);

			} catch (Exception ex) {
				restErrorObject.setDetails("We were unable to create a rest exception to return on an API because of a parsing error");
				aaiLogger.error(restErrorObject, logline, ex);
			}
		}
		
		info.setResponseMessages(responseMessages);
		respObj = (Object) info;

		return respObj;
	}


		/**
		 * Determines whether category is policy or not.  If policy (1), this is a POL error, else it's a SVC error.
		 * The AAIRESTException may contain a different ErrorObject than that created with the REST error key.
		 * This allows lower level exception detail to be returned to the client to help troubleshoot the problem.
		 * If no error object is embedded in the AAIException, one will be created using the error object from the AAIException.
		 * @param are must have a restError value whose numeric value must match what should be returned in the REST API
		 * @param variables optional list of variables to flesh out text in error string
		 * @param logline LogLine
		 * @return appropriately formatted JSON response per the REST API spec.
		 */
		public static String getRESTAPIPolicyErrorResponseXML(AAIException are, ArrayList<String> variables, LogLine logline) {

			StringBuilder text = new StringBuilder();
			String response = null;
			JAXBContext context = null;



			ErrorObject eo = are.getErrorObject();

			int restErrorCode = Integer.parseInt(eo.getRESTErrorCode());
			ErrorObject restErrorObject = ErrorLogHelper.getErrorObject("AAI_"+restErrorCode);		
			if (restErrorObject == null) {
				restErrorObject = eo;
			}
			text.append(restErrorObject.getErrorText());

			// We want to always append the (msg=%n) (ec=%n+1) to the text, but have to find value of n
			// This assumes that the variables in the ArrayList, which might be more than are needed to flesh out the
			// error, are ordered based on the error string.
			int localDataIndex = StringUtils.countMatches(restErrorObject.getErrorText(), "%");
			text.append(" (msg=%").append(localDataIndex+1).append(") (ec=%").append(localDataIndex+2).append(")");

			if (variables == null) 
			{
				variables = new ArrayList<String>();
			}

			if (variables.size() < localDataIndex) {
				aaiLogger.error(ErrorLogHelper.getErrorObject("AAI_4011", "data missing for rest error"), logline, null);
				while (variables.size() < localDataIndex) {
					variables.add("null");
				}
			}

			// This will put the error code and error text into the right positions
			if (eo.getDetails() == null) {
				variables.add(localDataIndex++, eo.getErrorText());
			}
			else {
				variables.add(localDataIndex++, eo.getErrorText() + ":" + eo.getDetails());
			}
			variables.add(localDataIndex, eo.getErrorCodeString());

			try {
				if(eo.getCategory().equals("1")) {

					context = JAXBContext.newInstance(org.openecomp.aai.domain.restPolicyException.Fault.class);
					Marshaller m = context.createMarshaller();
					m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
					m.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");

					org.openecomp.aai.domain.restPolicyException.ObjectFactory factory = new org.openecomp.aai.domain.restPolicyException.ObjectFactory();
					org.openecomp.aai.domain.restPolicyException.Fault fault = factory.createFault();
					org.openecomp.aai.domain.restPolicyException.Fault.RequestError requestError = factory.createFaultRequestError();
					org.openecomp.aai.domain.restPolicyException.Fault.RequestError.PolicyException policyException = factory.createFaultRequestErrorPolicyException();
					org.openecomp.aai.domain.restPolicyException.Fault.RequestError.PolicyException.Variables polvariables = factory.createFaultRequestErrorPolicyExceptionVariables();

					policyException.setMessageId("POL" + eo.getRESTErrorCode());
					policyException.setText(text.toString());
					for (int i=0;i<variables.size();i++)
					{
						polvariables.getVariable().add(variables.get(i));
					}
					policyException.setVariables(polvariables);
					requestError.setPolicyException(policyException);
					fault.setRequestError(requestError);

					StringWriter sw = new StringWriter();
					m.marshal(fault, sw);

					response = sw.toString();

				} else {

					context = JAXBContext.newInstance(org.openecomp.aai.domain.restServiceException.Fault.class);
					Marshaller m = context.createMarshaller();
					m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
					m.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");

					org.openecomp.aai.domain.restServiceException.ObjectFactory factory = new org.openecomp.aai.domain.restServiceException.ObjectFactory();
					org.openecomp.aai.domain.restServiceException.Fault fault = factory.createFault();
					org.openecomp.aai.domain.restServiceException.Fault.RequestError requestError = factory.createFaultRequestError();
					org.openecomp.aai.domain.restServiceException.Fault.RequestError.ServiceException serviceException = factory.createFaultRequestErrorServiceException();
					org.openecomp.aai.domain.restServiceException.Fault.RequestError.ServiceException.Variables svcvariables = factory.createFaultRequestErrorServiceExceptionVariables();
					serviceException.setMessageId("POL" + eo.getRESTErrorCode());
					serviceException.setText(text.toString());
					for (int i=0;i<variables.size();i++)
					{
						svcvariables.getVariable().add(variables.get(i));
					}
					serviceException.setVariables(svcvariables);
					requestError.setServiceException(serviceException);
					fault.setRequestError(requestError);

					StringWriter sw = new StringWriter();
					m.marshal(fault, sw);

					response = sw.toString();

				}
			} catch (Exception ex) {
				restErrorObject.setDetails("We were unable to create a rest exception to return on an API because of a parsing error");
				aaiLogger.error(restErrorObject, logline, ex);
			}
			return response;
		}
	}