aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOGammaBPMN/src/main/groovy/com/att/bpm/scripts/MsoUtils.groovy
blob: 2721a20cf36dc26ef4addd34306685c4cd9fa51e (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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
/*-
 * ============LICENSE_START=======================================================
 * OPENECOMP - MSO
 * ================================================================================
 * 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 com.att.bpm.scripts

import groovy.util.Node;
import groovy.xml.XmlUtil

import java.text.SimpleDateFormat

import org.apache.commons.codec.binary.Base64



import org.apache.commons.codec.binary.Base64
import org.camunda.bpm.engine.runtime.Execution;
import org.slf4j.MDC;
import org.w3c.dom.Element
//import org.w3c.dom.NodeList

import org.openecomp.mso.bpmn.core.BPMNLogger
import org.openecomp.mso.logger.MessageEnum
import org.openecomp.mso.logger.MsoLogger
import org.openecomp.mso.utils.CryptoUtils
import org.openecomp.mso.bpmn.core.xml.XmlTool

class MsoUtils {
	def initializeEndPoints(execution){
		// use this placeholder to initialize end points, if called independently, this need to be set
		execution.setVariable("AAIEndPoint","http://localhost:8080/SoapUIMocks")			
	}
	def getNodeText(xmlInput,element){
		def rtn=null
		if(xmlInput!=null){
			def xml= new XmlSlurper().parseText(xmlInput)
			rtn= xml.'**'.find{node->node.name()==element}.text()
		}
		return rtn
	}
	def getMultNodes(xmlInput, element){
		def nodes=null
		if(xmlInput!=null){
			def xml= new XmlSlurper().parseText(xmlInput)
			nodes = xml.'**'.findAll{ node-> node.name() == element }*.text()
		}
		return nodes
	}
	def getNodeText1(xmlInput,element){
		def rtn=null
		if(xmlInput!=null){
			def xml= new XmlSlurper().parseText(xmlInput)
			rtn= xml.'**'.find{node->node.name()==element}
			if (rtn != null){
				rtn=rtn.text()
			}
		}
		return rtn
	}	
	def getNodeXml(xmlInput,element){
		return getNodeXml(xmlInput, element, true)
	}
	def getNodeXml(xmlInput,element,incPreamble){
		def fxml= new XmlSlurper().parseText(xmlInput)
		def nodeToSerialize = fxml.'**'.find {it.name() == element}
		if(nodeToSerialize==null){
			return ""
		}
		def nodeAsText = XmlUtil.serialize(nodeToSerialize)
		if (!incPreamble) {
			nodeAsText = removeXmlPreamble(nodeAsText)
		}
		return nodeAsText		
	}
	def nodeExists(xmlInput,element){
		try {
			def fxml= new XmlSlurper().parseText(xmlInput)
			def nodeToSerialize = fxml.'**'.find {it.name() == element}
			return nodeToSerialize!=null
		} catch(Exception e) {
			return false
		}
	}

	
	/***** Utilities when using XmlParser *****/
	
	/**
	 * Convert a Node into a String by deserializing it and formatting it.
	 *
	 * @param node Node to be converted.
	 * @return the Node as a String.
	 */
	def String nodeToString(Node node) {
		def String nodeAsString = groovy.xml.XmlUtil.serialize(node)
		nodeAsString = removeXmlPreamble(nodeAsString)
		return formatXml(nodeAsString)
	}
	
	/**
	 * Get the specified child Node of the specified parent. If there are
	 * multiple children of the same name, only the first one is returned.
	 * If there are no children with the specified name, 'null' is returned.
	 * 
	 * @param parent Parent Node in which to find a child.
	 * @param childNodeName Name of the child Node to get.
	 * @return the (first) child Node with the specified name or 'null'
	 * if a child Node with the specified name does not exist.
	 */
	def Node getChildNode(Node parent, String childNodeName) {
		def NodeList nodeList = getIdenticalChildren(parent, childNodeName)
		if (nodeList.size() == 0) {
			return null
		} else {
			return nodeList.get(0)
		}
	}
	
	/**
	 * Get the textual value of the specified child Node of the specified parent.
	 * If there are no children with the specified name, 'null' is returned.
	 * 
	 * @param parent Parent Node in which to find a child.
	 * @param childNodeName Name of the child Node whose value to get.
	 * @return the textual value of child Node with the specified name or 'null'
	 * if a child Node with the specified name does not exist.
	 */
	def String getChildNodeText(Node parent, String childNodeName) {
		def Node childNode = getChildNode(parent, childNodeName)
		if (childNode == null) {
			return null
		} else {
			return childNode.text()
		}
	}
	
	/**
	 * Get all of the child nodes from the specified parent that have the
	 * specified name.  The returned NodeList could be empty.
	 * 
	 * @param parent Parent Node in which to find children.
	 * @param childNodeName Name of the children to get.
	 * @return a NodeList of all the children from the parent with the specified
	 * name. The list could be empty.
	 */
	def NodeList getIdenticalChildren(Node parent, String childNodeName) {
		return (NodeList) parent.get(childNodeName)
	}

	/***** End of Utilities when using XmlParser *****/

	
	/** these are covered under the common function above**/
	def getSubscriberName(xmlInput,element){
		def rtn=null
		if(xmlInput!=null){
			def xml= new XmlSlurper().parseText(xmlInput)
			rtn= xml.'**'.find{node->node.name()==element}.text()
		} 
		return rtn
	}
	def getTenantInformation(xmlInput,element){
		def xml= new XmlSlurper().parseText(xmlInput)
		def nodeToSerialize = xml.'**'.find {it.name() == 'service-information'}
		def nodeAsText = XmlUtil.serialize(nodeToSerialize)
		return nodeAsText
	}
	def getServiceInstanceId(xmlInput,element){
		def xml= new XmlSlurper().parseText(xmlInput)
		return ( xml.'**'.find{node->node.name()==element}.text() )
	}
	//for aai tenant url
	def searchResourceLink(xmlInput, resourceType){
		def fxml= new XmlSlurper().parseText(xmlInput)
		def element = fxml.'**'.find {it.'resource-type' == resourceType}
		return (element == null) ? null : element.'resource-link'.text()
	}

	def searchMetaData(xmlInput, searchName, searchValue){
		def fxml= new XmlSlurper().parseText(xmlInput)
		def ret = fxml.'**'.find {it.metaname.text() == searchName && it.metaval.text() == searchValue}
		if(ret != null){
			return ret.parent().parent()
		}
		return ret
	}
	
	def searchMetaDataNode(fxml, searchName, searchValue){
		def ret = fxml.'**'.find {it.metaname.text() == searchName && it.metaval.text() == searchValue}
		if(ret != null){
			return ret.parent().parent()
		}
		return ret
	}
	
	// for Trinity L3 delete bonding
	def getPBGFList(isDebugLogEnabled, xmlInput){
		xmlInput = xmlInput.replaceAll("&", "&")
		xmlInput = xmlInput.replaceAll("&lt;", "<")
		xmlInput = xmlInput.replaceAll("&gt;", ">")
		log("DEBUG", "getPBGFList: xmlInput " + xmlInput,isDebugLogEnabled)
		ArrayList myNodes = new ArrayList()
		if(nodeExists(xmlInput,"nbnc-response-information")){
		def respInfo=getNodeXml(xmlInput,"nbnc-response-information", false)
		if(respInfo!=null){
			def fxml= new XmlSlurper().parseText(respInfo)
			def myNode
			fxml.'virtual-datacenter-list'.each { vdc ->
				//we only want to add one BFG per VDC
				log("DEBUG", "vdc " + vdc.text(),isDebugLogEnabled)
				myNode = vdc.'**'.find {it.'border-element-tangibility'.text() =~ /PHYSICAL/}
				log("DEBUG", "myNode " + myNode.text(),isDebugLogEnabled)
				myNodes.add(XmlUtil.serialize(myNode))
			}
		}
				
			return myNodes
		}else{
			return null
		}
	}
	
	def getPBGFList(xmlInput){
		getPBGFList("false", xmlInput)
	}
	
	def String decodeXML(xml) {
		def String decodedXml = xml.replaceAll("&amp;", "&")
		decodedXml = decodedXml.replaceAll("&lt;", "<")
		decodedXml = decodedXml.replaceAll("&gt;", ">")
	}
	
	def getMetaVal(node, name){
		try{
			return node.'**'.find {it.metaname.text() == name}.metaval.text()
		}catch(Exception e){
			return null
		}
	}
	def getRelationshipVal(node, name){
		try{
			return node.'**'.find {it.'relationship-key'.text() == name}.'relationship-value'.text()
		}catch(Exception e){
			return null
		}
	}

	
	def log(logmode,logtxt,isDebugLogEnabled="false"){
		MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);
		if ("INFO"==logmode) {
			msoLogger.info(MessageEnum.BPMN_GENERAL_EXCEPTION_ARG, logtxt);
		} else if ("WARN"==logmode) {
			msoLogger.warn (MessageEnum.BPMN_GENERAL_WARNING, "BPMN", MsoLogger.getServiceName(), MsoLogger.ErrorCode.UnknownError, logtxt);
		} else if ("ERROR"==logmode) {
		    msoLogger.error(MessageEnum.BPMN_GENERAL_EXCEPTION_ARG, "BPMN", MsoLogger.getServiceName(), MsoLogger.ErrorCode.UnknownError, logtxt);
			
		} else {
			BPMNLogger.debug(isDebugLogEnabled, logtxt);
		}
	}
	
	def logContext(requestId, serviceInstanceId){
	    MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);
		msoLogger.setLogContext(requestId, serviceInstanceId);
	}
	
	def logMetrics(elapsedTime, logtxt){
		MsoLogger metricsLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);
		
		metricsLogger.recordMetricEvent (elapsedTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc,
			logtxt, "BPMN", MsoLogger.getServiceName(), null);
	}
	
	def logAudit(logtxt){
		MsoLogger auditLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);
		long startTime = System.currentTimeMillis();
		
		auditLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, logtxt);
	}
	
	// headers: header - name-value
	def getHeaderNameValue(xmlInput, nameAttribute){
		def rtn=null
		if(xmlInput!=null){
			def xml= new XmlSlurper().parseText(xmlInput)
			rtn= xml.'**'.find {header->header.'@name'.text() == nameAttribute}.'@value'
		}
		return rtn
	}
	
	/**
	 * Gets the children of the specified element.
	 */
	public String getChildNodes(xmlInput, element) {
		def xml= new XmlSlurper().parseText(xmlInput)
		def thisElement = xml.'**'.find {it.name() == element}
		StringBuilder out = new StringBuilder()
		if (thisElement != null) {
			thisElement.children().each() {
				String nodeAsText = removeXmlPreamble(XmlUtil.serialize(it))
				if (out.length() > 0) {
					out.append(System.lineSeparator())
				}
				out.append(nodeAsText)
			}
		}
		return out.toString();
	}
	
	/**
	 * Encodes a value so it can be used inside an XML text element.
	 * @param s the string to encode
	 * @return the encoded string
	 */
	public String xmlEncode(Object value) {
		return XmlTool.encode(value)
	}
	
	/**
	 * Encodes a value so it can be used inside an XML attribute.
	 * @param s the string to encode
	 * @return the encoded string
	 */
	public String xmlEncodeAttr(Object value) {
		return XmlTool.encodeAttr(value)
	}
	
	/**
	 * Decodes XML entities in a string value
	 * @param value a value with embedded XML entities
	 * @return the decoded string
	 */
	public String xmlDecode(Object value) {
		return XmlTool.decode(value)
	}
	
	/**
	 * Removes the preamble, if present, from an XML document.
	 * Also, for historical reasons, this also trims leading and trailing
	 * whitespace from the resulting document.  TODO: remove the trimming
	 * and fix unit tests that depend on EXACT xml format.
	 * @param xml the XML document
	 * @return a possibly modified document
	 */
	public String removeXmlPreamble(def xml) {
		if (xml == null) {
			return null
		}

		return XmlTool.removePreamble(xml).trim()
	}

	/**
	 * Removes namespaces and namespace declarations from an XML document.
	 * @param xml the XML document
	 * @return a possibly modified document
	 */
	public String removeXmlNamespaces(def xml) {
		return XmlTool.removeNamespaces(xml);
	}

	/**
	 * Use formatXml instead.  Note: this method inserts an XML preamble.
	 */
	@Deprecated
	def formatXML(xmlInput) {
		def parseXml = null
		def formatXml = null
		if (xmlInput !=null) {
			parseXml = new XmlParser().parseText(xmlInput)
			formatXml = XmlUtil.serialize(parseXml)
		}
	}

	/**
	 * Reformats an XML document. The result will not contain an XML preamble
	 * or a trailing newline.
	 * @param xml the XML document
	 * @return a reformatted document
	 */
	public String formatXml(def xml) {
		return XmlTool.normalize(xml);
	}
	
	// build single elements
	def buildElements(xmlInput, elementList, parentName) {
		String var = ""
		def xmlBuild = ""
		if (parentName != "") {
		   xmlBuild += "<tns2:"+parentName+">"
		}   
		if (xmlInput != null) {
			   for (element in elementList) {
			      def xml= new XmlSlurper().parseText(xmlInput)
			      var = xml.'**'.find {it.name() == element}
				  if (var != null) {
			         xmlBuild += "<tns2:"+element+">"+var.toString()+"</tns2:"+element+">"
				  } 
			   }
		}
		if (parentName != "") {
		   xmlBuild += "</tns2:"+parentName+">"
		}   
		return xmlBuild
	}
	
	// build the Unbounded elements
	def buildElementsUnbounded(xmlInput, elementList, parentName) {
		def varParents = ""
		def var = ""
		def xmlBuildUnbounded = ""
		if (xmlInput != null) {
			def xml= new XmlSlurper().parseText(xmlInput)
			varParents = xml.'**'.findAll {it.name() == parentName}
			//println " Unbounded ${parentName} - varParent.Size() - " + varParents.size()
			for (i in 0..varParents.size()-1) {
				if (parentName != "") {
					xmlBuildUnbounded += "<tns2:"+parentName+">"
				 }
				for (element in elementList) {
					var = varParents[i].'*'.find {it.name() == element}
				   if (var != null) {
					  xmlBuildUnbounded += "<tns2:"+element+">"+var.toString()+"</tns2:"+element+">"
					  //println " i = " + i + ", element: " + element + " = " + var.toString()
				   }
				}
				if (parentName != "") {
					xmlBuildUnbounded += "</tns2:"+parentName+">"
				 }
			}
		}
		return xmlBuildUnbounded
	 }
	
	// Build internet-evc-access-information
	def buildInternetEvcAccessInformation(xmlInput) {
		def elementsInternetEvcAccessInformationList = ["internet-evc-speed-value", "internet-evc-speed-units", "ip-version"]
		def rebuildInternetEvcAccess = ''
		if (xmlInput != null) {
			rebuildInternetEvcAccess = buildElements(xmlInput, elementsInternetEvcAccessInformationList, "internet-evc-access-information")
		}
		return rebuildInternetEvcAccess
	}
	
    // Build internet-service-change-details
	def buildInternetServiceChangeDetails(xmlInput) {
		def rebuildInternetServiceChangeDetails = ""
		if (xmlInput != null) {
		    try { // optional
				def internetServiceChangeDetails = getNodeXml(xmlInput, "internet-service-change-details").drop(38).trim()
				rebuildInternetServiceChangeDetails = "<tns:internet-service-change-details>"
				rebuildInternetServiceChangeDetails += buildElements(internetServiceChangeDetails, ["internet-evc-speed-value"], "")
				rebuildInternetServiceChangeDetails += buildElements(internetServiceChangeDetails, ["internet-evc-speed-units"], "")
				def tProvidedV4LanPublicPrefixesChangesList = ["request-index", "v4-next-hop-address", "v4-lan-public-prefix", "v4-lan-public-prefix-length"]
				rebuildInternetServiceChangeDetails += buildElementsUnbounded(internetServiceChangeDetails, tProvidedV4LanPublicPrefixesChangesList, "t-provided-v4-lan-public-prefixes")
				try { // optional
				  def tProvidedV6LanPublicPrefixesChangesList = ["request-index", "v6-next-hop-address", "v6-lan-public-prefix", "v6-lan-public-prefix-length"]
				  rebuildInternetServiceChangeDetails += buildElementsUnbounded(internetServiceChangeDetails, tProvidedV6LanPublicPrefixesChangesList, "t-provided-v6-lan-public-prefixes")
				} catch (Exception e) {
					log("ERROR"," Optional - Exception INTERNET-SERVICE-CHANGE-DETAILS 't-provided-v6-lan-public-prefixes ")
				}
				rebuildInternetServiceChangeDetails += "</tns:internet-service-change-details>"
			} catch (Exception e) {
				log("ERROR", " Optional - Exception INTERNET-SERVICE-CHANGE-DETAILS 'internet-service-change-details' ")
			}
		}
	    return rebuildInternetServiceChangeDetails
	}		
 	
	// Build vr-lan 
	def buildVrLan(xmlInput) {
		
		def rebuildVrLan = ''
		if (xmlInput != null) {
			
			rebuildVrLan = "<tns2:vr-lan>"
			def vrLan = getNodeXml(xmlInput, "vr-lan").drop(38).trim()
			rebuildVrLan += buildElements(vrLan, ["routing-protocol"], "")
			
			// vr-lan-interface
			def rebuildVrLanInterface = "<tns2:vr-lan-interface>"
			def vrLanInterface = getNodeXml(vrLan, "vr-lan-interface").drop(38).trim()
			rebuildVrLanInterface += buildVrLanInterfacePartial(vrLanInterface)
			
			 // dhcp
			 def dhcp = getNodeXml(vrLan, "dhcp").drop(38).trim()
			 def rebuildDhcp = buildDhcp(dhcp)
			 rebuildVrLanInterface += rebuildDhcp
			 
			 // pat
			 def pat = getNodeXml(vrLan, "pat").drop(38).trim()
			 def rebuildPat = buildPat(pat)
			 rebuildVrLanInterface += rebuildPat
			 
			 // nat
			 def rebuildNat = ""
			 try { // optional
				def nat = getNodeXml(vrLan, "nat").drop(38).trim()
				rebuildNat = buildNat(nat)
			 } catch (Exception e) {
				 log("ERROR", " Optional - Exception 'nat' ")
			 }
			 rebuildVrLanInterface += rebuildNat
										
			 // firewall-lite
			 def firewallLite = getNodeXml(vrLan, "firewall-lite").drop(38).trim()
			 def rebuildFirewallLite = buildFirewallLite(firewallLite)
			 rebuildVrLanInterface += rebuildFirewallLite
			 
			 // static-routes
			 def rebuildStaticRoutes = ""
			 try { // optional 
				 def staticRoutes = getNodeXml(vrLan, "static-routes").drop(38).trim()
				 rebuildStaticRoutes = buildStaticRoutes(staticRoutes)
			} catch (Exception e) {
				 log("ERROR", " Optional - Exception 'static-routes' ")
			}
			rebuildVrLanInterface += rebuildStaticRoutes
			 
		   rebuildVrLan += rebuildVrLanInterface
		   rebuildVrLan += "</tns2:vr-lan-interface>"
		   rebuildVrLan += "</tns2:vr-lan>"
			
		}
		log("DEBUG", " rebuildVrLan - " + rebuildVrLan)
		return rebuildVrLan 		
	}
	
	// Build vr-lan-interface
	def buildVrLanInterfacePartial(xmlInput) {
		def rebuildingVrLanInterface = ''
		if (xmlInput != null) {
			def vrLanInterfaceList = ["vr-designation", "v4-vr-lan-prefix", "v4-vr-lan-address", "v4-vr-lan-prefix-length", "v6-vr-lan-prefix", "v6-vr-lan-address", "v6-vr-lan-prefix-length", "v4-vce-loopback-address", "v6-vce-wan-address"]
			rebuildingVrLanInterface += buildElements(xmlInput, vrLanInterfaceList, "")
			rebuildingVrLanInterface += "<tns2:v4-public-lan-prefixes>"
			try { // optional
				def tProvidedV4LanPublicPrefixes = getNodeXml(xmlInput, "v4-public-lan-prefixes").drop(38).trim()
				def tProvidedV4LanPublicPrefixesList = ["request-index", "v4-next-hop-address", "v4-lan-public-prefix", "v4-lan-public-prefix-length" ]
				rebuildingVrLanInterface += buildElementsUnbounded(xmlInput, tProvidedV4LanPublicPrefixesList, "t-provided-v4-lan-public-prefixes")
			} catch (Exception ex) {
				log("ERROR", " Optional - Exception VR-LAN INTERFACE 'v4-public-lan-prefixes' ")
			}
			rebuildingVrLanInterface += "</tns2:v4-public-lan-prefixes>"
			rebuildingVrLanInterface += "<tns2:v6-public-lan-prefixes>"
			try { // optional
				def tProvidedV6LanPublicPrefixes = getNodeXml(xmlInput, "v6-public-lan-prefixes").drop(38).trim()
				def tProvidedV6LanPublicPrefixesList = ["request-index", "v6-next-hop-address", "v6-lan-public-prefix", "v6-lan-public-prefix-length" ]
				rebuildingVrLanInterface += buildElementsUnbounded(xmlInput, tProvidedV6LanPublicPrefixesList, "t-provided-v6-lan-public-prefixes")
			} catch (Exception e) {
				log("ERROR", " Optional - Exception VR-LAN INTERFACE 'v6-public-lan-prefixes' ")
			}
			rebuildingVrLanInterface += "</tns2:v6-public-lan-prefixes>"
		}
		log("DEBUG", " rebuildingVrLanInterface - " + rebuildingVrLanInterface)
		return rebuildingVrLanInterface
	}
	
	// Build dhcp
	def buildDhcp(xmlInput) {
		def rebuildingDhcp = ''
		if (xmlInput != null) {
			def dhcpData = new XmlSlurper().parseText(xmlInput)
			rebuildingDhcp = "<tns2:dhcp>"
			def dhcpList1 = ["v4-dhcp-server-enabled", "v6-dhcp-server-enabled", "use-v4-default-pool", "v4-dhcp-default-pool-prefix", "v4-dhcp-default-pool-prefix-length"]
			rebuildingDhcp += buildElements(xmlInput, dhcpList1, "")
			try { // optional
				def excludedV4DhcpAddressesFromDefaultPoolList = ["excluded-v4-address"]
				rebuildingDhcp += buildElementsUnbounded(xmlInput, excludedV4DhcpAddressesFromDefaultPoolList, "excluded-v4-dhcp-addresses-from-default-pool")
			} catch (Exception e) {
				log("ERROR", " Optional - Exception DHCP 'excluded-v4-dhcp-addresses-from-default-pool' ")
			}
			try { // optional
				def v4DhcpPools = dhcpData.'**'.findAll {it.name() == "v4-dhcp-pools"}
				def v4DhcpPoolsSize = v4DhcpPools.size()
				// println " v4DhcpPoolsSize = " + v4DhcpPools.size()
				for (i in 0..v4DhcpPoolsSize-1) {
					def v4DhcpPool = v4DhcpPools[i]
					def v4DhcpPoolXml = XmlUtil.serialize(v4DhcpPool)
					rebuildingDhcp += "<tns2:v4-dhcp-pools>"
					def v4DhcpPoolsList1 = ["v4-dhcp-pool-prefix", "v4-dhcp-pool-prefix-length" ]
					rebuildingDhcp += buildElements(v4DhcpPoolXml, v4DhcpPoolsList1, "")
					try { // optional
					   def excludedV4AddressesList = ["excluded-v4-address"]
					   rebuildingDhcp += buildElementsUnbounded(v4DhcpPoolXml, excludedV4AddressesList, "excluded-v4-addresses")
					} catch (Exception e) {
					   log("ERROR", " Optional - Exception DHCP 'excluded-v4-addresses' ")
					}
					def v4DhcpPoolsList2 = ["v4-dhcp-relay-gateway-address", "v4-dhcp-relay-next-hop-address"]
					rebuildingDhcp += buildElements(v4DhcpPoolXml, v4DhcpPoolsList2, "")
					rebuildingDhcp += "</tns2:v4-dhcp-pools>"
				 }
			 } catch (Exception e) {
				  log("ERROR"," Optional - Exception DHCP 'v4-dhcp-pools' ")
			 }
			 def dhcpList2 = ["use-v6-default-pool", "v6-dhcp-default-pool-prefix", "v6-dhcp-default-pool-prefix-length"]
			 rebuildingDhcp += buildElements(xmlInput, dhcpList2, "")
			 try { // optional
				 def excludedV6DhcpAddressesFromDdefaultPoolList = ["excluded-v6-address"]
				 rebuildingDhcp += buildElementsUnbounded(xmlInput, excludedV6DhcpAddressesFromDdefaultPoolList, "excluded-v6-dhcp-addresses-from-default-pool")
			 } catch (Exception e) {
			   log("ERROR", " Optional - Exception DHCP 'excluded-v6-dhcp-addresses-from-default-pool' ")
			 }
			 try { // optional
				 def v6DhcpPools = dhcpData.'**'.findAll {it.name() == "v6-dhcp-pools"}
				 def v6DhcpPoolsSize = v6DhcpPools.size()
				 //println " v6DhcpPoolsSize = " + v6DhcpPools.size()
				 for (i in 0..v6DhcpPoolsSize-1) {
					def v6DhcpPool = v6DhcpPools[i]
					def v6DhcpPoolXml = XmlUtil.serialize(v6DhcpPool)
					rebuildingDhcp += "<tns2:v6-dhcp-pools>"
					def v6DhcpPoolsList1 = ["v6-dhcp-pool-prefix", "v6-dhcp-pool-prefix-length"]
					rebuildingDhcp += buildElements(v6DhcpPoolXml, v6DhcpPoolsList1, "")
					try { // optional
						def excludedV6AddressesList = ["excluded-v6-address"]
						rebuildingDhcp += buildElementsUnbounded(v6DhcpPoolXml, excludedV6AddressesList, "excluded-v6-addresses")
					} catch (Exception e) {
							 log("ERROR", " Optional - Exception DHCP 'excluded-v6-addresses' ")
					}
					def v6DhcpPoolsList2 = ["v6-dhcp-relay-gateway-address", "v6-dhcp-relay-next-hop-address"]
					rebuildingDhcp += buildElements(v6DhcpPoolXml, v6DhcpPoolsList2, "")
					rebuildingDhcp += "</tns2:v6-dhcp-pools>"
				 }
			 } catch (Exception e) {
				 log("ERROR", " Optional - Exception DHCP 'v6-dhcp-pools' ")
			 }
			 rebuildingDhcp += "</tns2:dhcp>"
		}	 
		log("DEBUG", " rebuildingDhcp - " + rebuildingDhcp)
		return rebuildingDhcp
	}	

	// Build pat
	def buildPat(xmlInput) {
		 def rebuildingPat = ''
		 if (xmlInput != null) {
			 rebuildingPat = "<tns2:pat>"
			 def patList = ["v4-pat-enabled", "use-v4-default-pool", "v4-pat-default-pool-prefix", "v4-pat-default-pool-prefix-length"]
			 rebuildingPat += buildElements(xmlInput, patList, "")
			 try { // optional
				 def v4PatPools = getNodeXml(xmlInput, "v4-pat-pools").drop(38).trim()
				 def v4PatPoolsList = ["v4-pat-pool-prefix", "v4-pat-pool-prefix-length", "v4-pat-pool-next-hop-address"]
				 rebuildingPat += buildElementsUnbounded(xmlInput, v4PatPoolsList, "v4-pat-pools")
			 } catch (Exception e) {
				log("ERROR", " Optional - Exception 'v4-pat-pool-next-hop-address' ")
			 }
			 rebuildingPat += "</tns2:pat>"
		 }
		 log("DEBUG", " rebuildingPat - " + rebuildingPat)
	     return rebuildingPat
    }
	
	// Build nat
	def buildNat(xmlInput) {
		def rebuildingNat = ''
		if (xmlInput != null) {
			rebuildingNat = "<tns2:nat>"
			rebuildingNat += buildElements(xmlInput, ["v4-nat-enabled"], "")
			try { // optional
			 def v4NatMappingEntries = getNodeXml(xmlInput, "v4-nat-mapping-entries").drop(38).trim()
			 def v4NatMappingEntriesList = ["v4-nat-internal", "v4-nat-next-hop-address", "v4-nat-external"]
			 rebuildingNat += buildElementsUnbounded(xmlInput, v4NatMappingEntriesList, "v4-nat-mapping-entries")
			} catch (Exception e) {
			   log("ERROR", " Optional - Exception 'v4-nat-external' ")
			}
			rebuildingNat += "</tns2:nat>"
		}
		log("DEBUG", " rebuildingNat - " + rebuildingNat)
	    return rebuildingNat
	}				
	
	// Build firewall-lite
	def buildFirewallLite(xmlInput) {
		def rebuildingFirewallLite = ''
		
		if (xmlInput != null) {
			
			def firewallLiteData = new XmlSlurper().parseText(xmlInput)
			rebuildingFirewallLite = "<tns2:firewall-lite>"
			def firewallLiteList = ["stateful-firewall-lite-v4-enabled", "stateful-firewall-lite-v6-enabled"]
			rebuildingFirewallLite += buildElements(xmlInput, firewallLiteList, "")
			
			 try { // optional
				 def v4FirewallPacketFilters = firewallLiteData.'**'.findAll {it.name() == "v4-firewall-packet-filters"}
				 def v4FirewallPacketFiltersSize = v4FirewallPacketFilters.size()
				 //println " v4FirewallPacketFiltersSize = " + v4FirewallPacketFilters.size()
				 for (i in 0..v4FirewallPacketFiltersSize-1) {
			       def v4FirewallPacketFilter = v4FirewallPacketFilters[i]
			       def v4FirewallPacketFilterXml = XmlUtil.serialize(v4FirewallPacketFilter)
				   rebuildingFirewallLite += "<tns2:v4-firewall-packet-filters>"
				   def v4FirewallPacketFiltersList = ["v4-firewall-prefix", "v4-firewall-prefix-length", "allow-icmp-ping"]
				   rebuildingFirewallLite += buildElements(v4FirewallPacketFilterXml, v4FirewallPacketFiltersList, "")
				   try {  // optional
			          def udpPortsList = ["port-number"]
					  rebuildingFirewallLite += buildElementsUnbounded(v4FirewallPacketFilterXml, udpPortsList, "udp-ports")
				   } catch (Exception e) {
					  log("ERROR", " Optional - Exception FIREWALL-LITE v4 'udp-ports' ")
				   }
				   try {  // optional
					  def tcpPortsList =  ["port-number"]
					  rebuildingFirewallLite += buildElementsUnbounded(v4FirewallPacketFilterXml, tcpPortsList, "tcp-ports")
				   } catch (Exception e) {
				      log("ERROR", " Optional - Exception FIREWALL-LITE v4 'tcp-ports' ")
				   }
				   rebuildingFirewallLite += "</tns2:v4-firewall-packet-filters>"
				 }
			 } catch (Exception e) {
				 log("ERROR", " Optional - Exception FIREWALL-LITE 'v4-firewall-packet-filters' ")
			 }
			 
			 try { // optional
				 def v6FirewallPacketFilters = firewallLiteData.'**'.findAll {it.name() == "v6-firewall-packet-filters"}
				 def v6FirewallPacketFiltersSize = v6FirewallPacketFilters.size()
				 //println " v6FirewallPacketFiltersSize = " + v6FirewallPacketFilters.size()
				 for (i in 0..v6FirewallPacketFiltersSize-1) {
					def v6FirewallPacketFilter = v6FirewallPacketFilters[i]
					def v6FirewallPacketFilterXml = XmlUtil.serialize(v6FirewallPacketFilter)
					rebuildingFirewallLite += "<tns2:v6-firewall-packet-filters>"
					def v6FirewallPacketFiltersList = ["v6-firewall-prefix", "v6-firewall-prefix-length", "allow-icmp-ping"]
					rebuildingFirewallLite += buildElements(v6FirewallPacketFilterXml, v6FirewallPacketFiltersList, "")
					try { // optional
						def udpPortsList = ["port-number"]
						rebuildingFirewallLite += buildElementsUnbounded(v6FirewallPacketFilterXml, udpPortsList, "udp-ports")
					} catch (Exception e) {
				      log("ERROR", " Optional - Exception FIREWALL-LITE v6 'udp-ports' ")
					}
					try { // optional
						def tcpPortsList =  ["port-number"]
						rebuildingFirewallLite += buildElementsUnbounded(v6FirewallPacketFilterXml, tcpPortsList, "tcp-ports")
					} catch (Exception e) {
				    	log("ERROR", " Optional - Exception FIREWALL-LITE v6 'tcp-ports' ")
					}
			       rebuildingFirewallLite += "</tns2:v6-firewall-packet-filters>"
				 }
			 } catch (Exception e) {
				 log("ERROR", " Optional - Exception FIREWALL-LITE 'v6-firewall-packet-filters' ")
			 }
			 rebuildingFirewallLite+= "</tns2:firewall-lite>"
		}
		log("DEBUG", " rebuildingFirewallLite - " + rebuildingFirewallLite)
		return rebuildingFirewallLite
     }
	
	def buildStaticRoutes(xmlInput) {
		def rebuildingStaticRoutes = ''
		if (xmlInput != null) {
			rebuildingStaticRoutes = "<tns2:static-routes>"
			def v4StaticRouteslist = ["v4-static-route-prefix","v4-static-route-prefix-length", "v4-next-hop-address"]
			rebuildingStaticRoutes += buildElementsUnbounded(xmlInput, v4StaticRouteslist, "v4-static-routes")
			def v6StaticRouteslist = ["v6-static-route-prefix","v6-static-route-prefix-length", "v6-next-hop-address"]
			rebuildingStaticRoutes += buildElementsUnbounded(xmlInput, v6StaticRouteslist, "v6-static-routes")
			rebuildingStaticRoutes += "</tns2:static-routes>"
		}
		log("DEBUG", " rebuildingStaticRoutes - " + rebuildingStaticRoutes)
		return rebuildingStaticRoutes
	}
	
	public String generateCurrentTimeInUtc(){
		final  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
		sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
		final String utcTime = sdf.format(new Date());
		return utcTime;
	}
	
	public String generateCurrentTimeInGMT(){
		final  SimpleDateFormat sdf = new SimpleDateFormat("E, d MMM yyyy h:m:s z");
		sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
		final String utcTime = sdf.format(new Date());
		return utcTime;
	}
	

	/**
	 * @param encryptedAuth: encrypted credentials from urn properties
	 * @param msoKey: key to use to decrypt from urn properties
	 * @return base 64 encoded basic auth credentials
	 */
	def getBasicAuth(encryptedAuth, msoKey){
		try {
			def auth = decrypt(encryptedAuth, msoKey)
			byte[] encoded = Base64.encodeBase64(auth.getBytes())
			String encodedString = new String(encoded)
			encodedString = "Basic " + encodedString
			return encodedString
		} catch (Exception ex) {
			log("ERROR", "Unable to encode basic auth")
			throw ex
		}
	}
	
	def encrypt(toEncrypt, msokey){
		try {
			String result = CryptoUtils.encrypt(toEncrypt, msokey);
			return result
		}
		catch (Exception e) {
			log("ERROR", "Failed to encrypt credentials")
		}
	}
	
	def decrypt(toDecrypt, msokey){
		try {
			String result = CryptoUtils.decrypt(toDecrypt, msokey);
			return result
		}
		catch (Exception e) {
			log("ERROR", "Failed to decrypt credentials")
			throw e
		}
	}
	
	/**
	 * Return URL with qualified host name (if any) or urn mapping
	 * @param  String url from urn mapping
	 * @return String url with qualified host name
	 */
	public String getQualifiedHostNameForCallback(String urnCallbackUrl) {
		def callbackUrlToUse = urnCallbackUrl
		try{
			//swap host name with qualified host name from the jboss properties
			def qualifiedHostName = System.getProperty("jboss.qualified.host.name")
			if(qualifiedHostName!=null){
				log("DEBUG", "qualifiedHostName:\n" + qualifiedHostName)
				callbackUrlToUse = callbackUrlToUse.replaceAll("(http://)(.*)(:8080*)", {orig, first, torepl, last -> "${first}${qualifiedHostName}${last}"})
			}
		}catch(Exception e){
				log("DEBUG", "unable to grab qualified host name, using what's in urn properties for callbackurl. Exception was: " + e.printStackTrace())
		}
		return callbackUrlToUse
		
	}
	
	/**
	 * Retrieves text context of the element if the element exists, returns empty string otherwise
	 * @param com.sun.org.apache.xerces.internal.dom.DeferredElementNSImpl element to parse
	 * param String tagName tagName
	 * @return String text content of the element
	 */
	 public String getElementText(Element element, String tagName) {
	 	String text = ""
	 	org.w3c.dom.NodeList nodeList = element.getElementsByTagNameNS("*", tagName)
	 	if (nodeList != null && nodeList.length > 0) {
	 		text = nodeList.item(0).getTextContent()
	 	}
	 	return text
	 }

}