aboutsummaryrefslogtreecommitdiffstats
path: root/ajsc-aai/src/main/java/org/openecomp/aai/extensions/AAIExtensionMap.java
blob: 4fc05dd4f3d61b88c367b30abc7b2a5ca46b82cb (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
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
/*-
 * ============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.extensions;

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;

import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.UriInfo;

import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
import org.openecomp.aai.domain.model.AncestryItems;
import org.openecomp.aai.domain.responseMessage.AAIResponseMessages;
import org.openecomp.aai.introspection.Loader;
import org.openecomp.aai.logging.AAILogger;
import org.openecomp.aai.logging.LogLine;
import org.openecomp.aai.serialization.engines.TransactionalGraphEngine;

import com.thinkaurelius.titan.core.TitanGraph;
import com.thinkaurelius.titan.core.TitanTransaction;
import com.thinkaurelius.titan.core.TitanVertex;

public class AAIExtensionMap {
	// =======================================================================
	// Attribute | Type
	// =======================================================================
	// message | java.lang.String (RW)
	// ----------------------------------------------------------------------
	// templateVars | java.lang.ArrayList<String> (RW)
	// -----------------------------------------------------------------------
	// preExtException | java.lang.Exception (RW)
	// -----------------------------------------------------------------------
	// preExtErrorCallback | java.lang.reflect.Method (RW)
	// -----------------------------------------------------------------------
	// postExtException | java.lang.Exception (RW)
	// -----------------------------------------------------------------------
	// postExtErrorCallback | java.lang.reflect.Method (RW)
	// -----------------------------------------------------------------------
	// servletRequest | javax.servlet.http.HttpServletRequest (RO)
	// -----------------------------------------------------------------------
	// headers | javax.ws.rs.core.HttpHeaders (RO)
	// -----------------------------------------------------------------------
	// objFromRequest | $TYPE {ObjFromRequestType) (RO)
	// -----------------------------------------------------------------------
	// logline | Logline
	// -----------------------------------------------------------------------
	// aaiLogger | AAILogger
	// -----------------------------------------------------------------------
	// preExtFailOnError | java.lang.Boolean (RW)
	// -----------------------------------------------------------------------
	// postExtFailOnError | java.lang.Boolean (RW)
	// -----------------------------------------------------------------------
	// preExtSkipErrorCallback | java.lang.Boolean (RW)
	// -----------------------------------------------------------------------
	// postExtSkipErrorCallback | java.lang.Boolean (RW)
	// -----------------------------------------------------------------------
	// graph | com.thinkaurelius.titan.core.TitanGraph (RW)
	// -----------------------------------------------------------------------
	// objectFromResponse | Object
	// -----------------------------------------------------------------------
	// precheckAddedList | java.util.HashMap
	// -----------------------------------------------------------------------
	// precheckResponseMessages | org.openecomp.aai.extensions.AAIResponseMessages
	// =======================================================================

	private String message;
	private ArrayList<String> templateVars;
	private Exception preExtException;
	private Exception postExtException;
	private Method preExtErrorCallback;
	private Method postExtErrorCallback;
	private HttpServletRequest servletRequest;
	private HttpHeaders httpHeaders;
	private String objectFromRequestType;
	private Object objectFromRequest;
	private boolean preExtFailOnError = true;
	private boolean postExtFailOnError = true;
	private boolean preExtSkipErrorCallback = true;
	private boolean postExtSkipErrorCallback = true;
	private String fromAppId;
	private String transId;
	private LogLine logline;
	private AAILogger aaiLogger;
	private TitanTransaction graph;
	private Object objectFromResponse;
	private HashMap<String, Object> lookupHashMap;
	private HashMap<String, ArrayList<String>> precheckAddedList;
	private AAIResponseMessages precheckResponseMessages;
	private HashMap<String, Object> topology;
	private HashMap<String, TitanVertex> vertexCache;
	private String baseObject;
	private String namespace;
	private String fullResourceName;
	private String topObjectFullResourceName;
	private String uri;
	private String notificationUri;
	private String apiVersion;
	private long startTime;
	private long checkpointTime;
	private DynamicJAXBContext jaxbContext;
	private String objectFromResponseType;
	private String eventAction;
	private AncestryItems ancestry;
	private TransactionalGraphEngine dbEngine;
	private Loader loader;
	private UriInfo uriInfo;
	
	/**
	 * Sets the message.
	 *
	 * @param _message the new message
	 */
	public void setMessage(String _message) {
		this.message = _message;
	}

	/**
	 * Sets the template vars.
	 *
	 * @param _templateVars the new template vars
	 */
	public void setTemplateVars(ArrayList<String> _templateVars) {
		this.templateVars = _templateVars;
	}

	/**
	 * Sets the pre ext exception.
	 *
	 * @param _exception the new pre ext exception
	 */
	public void setPreExtException(Exception _exception) {
		this.preExtException = _exception;
	}

	/**
	 * Sets the pre ext error callback.
	 *
	 * @param _errorCallback the new pre ext error callback
	 */
	public void setPreExtErrorCallback(Method _errorCallback) {
		this.preExtErrorCallback = _errorCallback;
	}

	/**
	 * Sets the post ext exception.
	 *
	 * @param _exception the new post ext exception
	 */
	public void setPostExtException(Exception _exception) {
		this.postExtException = _exception;
	}

	/**
	 * Sets the post ext error callback.
	 *
	 * @param _errorCallback the new post ext error callback
	 */
	public void setPostExtErrorCallback(Method _errorCallback) {
		this.postExtErrorCallback = _errorCallback;
	}

	/**
	 * Sets the servlet request.
	 *
	 * @param _httpServletRequest the new servlet request
	 */
	public void setServletRequest(HttpServletRequest _httpServletRequest) {
		this.servletRequest = _httpServletRequest;
	}

	/**
	 * Sets the http headers.
	 *
	 * @param _httpHeaders the new http headers
	 */
	public void setHttpHeaders(HttpHeaders _httpHeaders) {
		this.httpHeaders = _httpHeaders;
	}

	/**
	 * Sets the object from request type.
	 *
	 * @param _objectFromRequestType the new object from request type
	 */
	public void setObjectFromRequestType(String _objectFromRequestType) {
		this.objectFromRequestType = _objectFromRequestType;
	}

	/**
	 * Sets the object from request.
	 *
	 * @param _objectFromRequest the new object from request
	 */
	public void setObjectFromRequest(Object _objectFromRequest) {
		this.objectFromRequest = _objectFromRequest;
	}

	/**
	 * Sets the object from response type.
	 *
	 * @param resourceClassName the new object from response type
	 */
	public void setObjectFromResponseType(String resourceClassName) {
		// TODO Auto-generated method stub
		this.objectFromResponseType = resourceClassName;
	}
	
	/**
	 * Gets the object from response type.
	 *
	 * @return the object from response type
	 */
	public String getObjectFromResponseType() {
		// TODO Auto-generated method stub
		return this.objectFromResponseType;
	}
	
	/**
	 * Sets the pre ext fail on error.
	 *
	 * @param _failOnError the new pre ext fail on error
	 */
	public void setPreExtFailOnError(boolean _failOnError) {
		this.preExtFailOnError = _failOnError;
	}

	/**
	 * Sets the post ext fail on error.
	 *
	 * @param _failOnError the new post ext fail on error
	 */
	public void setPostExtFailOnError(boolean _failOnError) {
		this.postExtFailOnError = _failOnError;
	}

	/**
	 * Gets the message.
	 *
	 * @return the message
	 */
	public String getMessage() {
		return this.message;
	}

	/**
	 * Gets the template vars.
	 *
	 * @return the template vars
	 */
	public ArrayList<String> getTemplateVars() {
		if (this.templateVars == null) {
			this.templateVars = new ArrayList<String>();
		}
		return this.templateVars;
	}

	/**
	 * Gets the pre ext exception.
	 *
	 * @return the pre ext exception
	 */
	public Exception getPreExtException() {
		return this.preExtException;
	}

	/**
	 * Gets the pre ext error callback.
	 *
	 * @return the pre ext error callback
	 */
	public Method getPreExtErrorCallback() {
		return this.preExtErrorCallback;
	}

	/**
	 * Gets the post ext exception.
	 *
	 * @return the post ext exception
	 */
	public Exception getPostExtException() {
		return this.postExtException;
	}

	/**
	 * Gets the post ext error callback.
	 *
	 * @return the post ext error callback
	 */
	public Method getPostExtErrorCallback() {
		return this.postExtErrorCallback;
	}

	/**
	 * Gets the http servlet request.
	 *
	 * @return the http servlet request
	 */
	public HttpServletRequest getHttpServletRequest() {
		return this.servletRequest;
	}

	/**
	 * Gets the http headers.
	 *
	 * @return the http headers
	 */
	public HttpHeaders getHttpHeaders() {
		return this.httpHeaders;
	}

	/**
	 * Gets the object from request type.
	 *
	 * @return the object from request type
	 */
	public String getObjectFromRequestType() {
		return this.objectFromRequestType;
	}

	/**
	 * Gets the object from request.
	 *
	 * @return the object from request
	 */
	public Object getObjectFromRequest() {
		return this.objectFromRequest;
	}

	/**
	 * Gets the pre ext fail on error.
	 *
	 * @return the pre ext fail on error
	 */
	public boolean getPreExtFailOnError() {
		return this.preExtFailOnError;
	}

	/**
	 * Gets the post ext fail on error.
	 *
	 * @return the post ext fail on error
	 */
	public boolean getPostExtFailOnError() {
		return this.postExtFailOnError;
	}

	/**
	 * Gets the from app id.
	 *
	 * @return the from app id
	 */
	public String getFromAppId() {
		return this.fromAppId;
	}

	/**
	 * Sets the from app id.
	 *
	 * @param fromAppId the new from app id
	 */
	public void setFromAppId(String fromAppId) {
		this.fromAppId = fromAppId;
	}

	/**
	 * Gets the trans id.
	 *
	 * @return the trans id
	 */
	public String getTransId() {
		return this.transId;
	}

	/**
	 * Sets the trans id.
	 *
	 * @param transId the new trans id
	 */
	public void setTransId(String transId) {
		this.transId = transId;
	}

	/**
	 * Gets the logline.
	 *
	 * @return the logline
	 */
	public LogLine getLogline() {
		if (logline == null) {
			logline = new LogLine();
		}
		return logline;
	}

	/**
	 * Sets the logline.
	 *
	 * @param logline the new logline
	 */
	public void setLogline(LogLine logline) {
		this.logline = logline;

	}

	/**
	 * Gets the aai logger.
	 *
	 * @return the aai logger
	 */
	public AAILogger getAaiLogger() {
		if (aaiLogger == null) {
			aaiLogger = new AAILogger(AAIExtensionMap.class.getName());
		}
		return aaiLogger;
	}

	/**
	 * Sets the aai logger.
	 *
	 * @param aaiLogger the new aai logger
	 */
	public void setAaiLogger(AAILogger aaiLogger) {
		this.aaiLogger = aaiLogger;
	}

	/**
	 * Gets the pre ext skip error callback.
	 *
	 * @return the pre ext skip error callback
	 */
	public boolean getPreExtSkipErrorCallback() {
		return preExtSkipErrorCallback;
	}

	/**
	 * Sets the pre ext skip error callback.
	 *
	 * @param preExtSkipErrorCallback the new pre ext skip error callback
	 */
	public void setPreExtSkipErrorCallback(boolean preExtSkipErrorCallback) {
		this.preExtSkipErrorCallback = preExtSkipErrorCallback;
	}

	/**
	 * Gets the post ext skip error callback.
	 *
	 * @return the post ext skip error callback
	 */
	public boolean getPostExtSkipErrorCallback() {
		return postExtSkipErrorCallback;
	}

	/**
	 * Sets the post ext skip error callback.
	 *
	 * @param postExtSkipErrorCallback the new post ext skip error callback
	 */
	public void setPostExtSkipErrorCallback(boolean postExtSkipErrorCallback) {
		this.postExtSkipErrorCallback = postExtSkipErrorCallback;
	}

	/**
	 * Gets the graph.
	 *
	 * @return the graph
	 */
	public TitanTransaction getGraph() {
		return graph;
	}

	/**
	 * Sets the graph.
	 *
	 * @param graph the new graph
	 */
	public void setGraph(TitanTransaction graph) {
		this.graph = graph;
	}

	/**
	 * Gets the object from response.
	 *
	 * @return the object from response
	 */
	public Object getObjectFromResponse() {
		return objectFromResponse;
	}

	/**
	 * Sets the object from response.
	 *
	 * @param objectFromResponse the new object from response
	 */
	public void setObjectFromResponse(Object objectFromResponse) {
		this.objectFromResponse = objectFromResponse;
	}

	/**
	 * Gets the lookup hash map.
	 *
	 * @return the lookup hash map
	 */
	public HashMap<String, Object> getLookupHashMap() {
		if (this.lookupHashMap == null) {
			this.lookupHashMap = new HashMap<String, Object>();
		}
		return this.lookupHashMap;
	}

	/**
	 * Sets the lookup hash map.
	 *
	 * @param lookupHashMap the lookup hash map
	 */
	public void setLookupHashMap(HashMap<String, Object> lookupHashMap) {
		this.lookupHashMap = lookupHashMap;
	}

	/**
	 * Gets the precheck added list.
	 *
	 * @return the precheck added list
	 */
	public HashMap<String, ArrayList<String>> getPrecheckAddedList() {
		if (this.precheckAddedList == null) {
			this.precheckAddedList = new HashMap<String, ArrayList<String>>();
		}
		return precheckAddedList;
	}

	/**
	 * Sets the precheck added list.
	 *
	 * @param precheckAddedList the precheck added list
	 */
	public void setPrecheckAddedList(HashMap<String, ArrayList<String>> precheckAddedList) {
		this.precheckAddedList = precheckAddedList;
	}

	/**
	 * Gets the precheck response messages.
	 *
	 * @return the precheck response messages
	 */
	public AAIResponseMessages getPrecheckResponseMessages() {
		if (this.precheckResponseMessages == null) { 
			this.precheckResponseMessages = new AAIResponseMessages();
		}
		return precheckResponseMessages;
	}

	/**
	 * Sets the precheck response messages.
	 *
	 * @param precheckResponseData the new precheck response messages
	 */
	public void setPrecheckResponseMessages(AAIResponseMessages precheckResponseData) {
		this.precheckResponseMessages = precheckResponseData;
	}

	/**
	 * Gets the topology.
	 *
	 * @return the topology
	 */
	public HashMap<String, Object> getTopology() {
		if (this.topology == null) { 
			this.topology = new HashMap<String, Object>();
		}
		return topology;
	}
	
	/**
	 * Gets the vertex cache.
	 *
	 * @return the vertex cache
	 */
	public HashMap<String, TitanVertex> getVertexCache() {
		if (this.vertexCache == null) { 
			this.vertexCache = new HashMap<String, TitanVertex>();
		}
		return vertexCache;
	}

	/**
	 * Gets the base object.
	 *
	 * @return the base object
	 */
	public String getBaseObject() {
		return baseObject;
	}

	/**
	 * Sets the base object.
	 *
	 * @param baseObject the new base object
	 */
	public void setBaseObject(String baseObject) {
		this.baseObject = baseObject;
	}

	/**
	 * Gets the namespace.
	 *
	 * @return the namespace
	 */
	public String getNamespace() {
		return namespace;
	}

	/**
	 * Sets the namespace.
	 *
	 * @param namespace the new namespace
	 */
	public void setNamespace(String namespace) {
		this.namespace = namespace;
	}

	/**
	 * Gets the full resource name.
	 *
	 * @return the full resource name
	 */
	public String getFullResourceName() {
		return fullResourceName;
	}

	/**
	 * Sets the full resource name.
	 *
	 * @param fullResourceName the new full resource name
	 */
	public void setFullResourceName(String fullResourceName) {
		this.fullResourceName = fullResourceName;
	}

	/**
	 * Gets the top object full resource name.
	 *
	 * @return the top object full resource name
	 */
	public String getTopObjectFullResourceName() {
		return topObjectFullResourceName;
	}

	/**
	 * Sets the top object full resource name.
	 *
	 * @param topObjectFullResourceName the new top object full resource name
	 */
	public void setTopObjectFullResourceName(String topObjectFullResourceName) {
		this.topObjectFullResourceName = topObjectFullResourceName;
	}

	/**
	 * Gets the uri.
	 *
	 * @return the uri
	 */
	public String getUri() {
		return uri;
	}

	/**
	 * Sets the uri.
	 *
	 * @param uri the new uri
	 */
	public void setUri(String uri) {
		this.uri = uri;
	}

	/**
	 * Gets the api version.
	 *
	 * @return the api version
	 */
	public String getApiVersion() {
		return apiVersion;
	}

	/**
	 * Sets the api version.
	 *
	 * @param apiVersion the new api version
	 */
	public void setApiVersion(String apiVersion) {
		this.apiVersion = apiVersion;
	}

	/**
	 * Sets the notification uri.
	 *
	 * @param uri the new notification uri
	 */
	public void setNotificationUri(String uri) {
		this.notificationUri = uri;
		
	}
	
	/**
	 * Gets the notification uri.
	 *
	 * @return the notification uri
	 */
	public String getNotificationUri() {
		return this.notificationUri;
		
	}

	/**
	 * Gets the start time.
	 *
	 * @return the start time
	 */
	public long getStartTime() {
		return startTime;
	}

	/**
	 * Sets the start time.
	 *
	 * @param startTime the new start time
	 */
	public void setStartTime(long startTime) {
		this.startTime = startTime;
	}

	/**
	 * Gets the checkpoint time.
	 *
	 * @return the checkpoint time
	 */
	public long getCheckpointTime() {
		return checkpointTime;
	}

	/**
	 * Sets the checkpoint time.
	 *
	 * @param checkpointTime the new checkpoint time
	 */
	public void setCheckpointTime(long checkpointTime) {
		this.checkpointTime = checkpointTime;
	}

	/**
	 * Gets the jaxb context.
	 *
	 * @return the jaxb context
	 */
	public DynamicJAXBContext getJaxbContext() {
		return jaxbContext;
	}

	/**
	 * Sets the jaxb context.
	 *
	 * @param jaxbContext the new jaxb context
	 */
	public void setJaxbContext(DynamicJAXBContext jaxbContext) {
		this.jaxbContext = jaxbContext;
	}

	/**
	 * Sets the event action.
	 *
	 * @param eventAction the new event action
	 */
	public void setEventAction(String eventAction) {
		this.eventAction = eventAction;
	}
	
	/**
	 * Gets the event action.
	 *
	 * @return the event action
	 */
	public String getEventAction() {
		return this.eventAction;
	}

	/**
	 * Sets the ancestry.
	 *
	 * @param ancestry the new ancestry
	 */
	public void setAncestry(AncestryItems ancestry) {
		this.ancestry = ancestry;
	}
	
	/**
	 * Gets the ancestry.
	 *
	 * @return the ancestry
	 */
	public AncestryItems getAncestry() {
		return this.ancestry;
	}

	/**
	 * Gets the transactional graph engine.
	 *
	 * @return the transactional graph engine
	 */
	public TransactionalGraphEngine getTransactionalGraphEngine() {
		return this.dbEngine;
		
	}
	
	/**
	 * Sets the transactional graph engine.
	 *
	 * @param dbEngine the new transactional graph engine
	 */
	public void setTransactionalGraphEngine(TransactionalGraphEngine dbEngine) {
		this.dbEngine = dbEngine;

	}

	/**
	 * Gets the loader.
	 *
	 * @return the loader
	 */
	public Loader getLoader() {
		return loader;
	}

	/**
	 * Sets the loader.
	 *
	 * @param loader the new loader
	 */
	public void setLoader(Loader loader) {
		this.loader = loader;
	}

	/**
	 * Gets the uri info.
	 *
	 * @return the uri info
	 */
	public UriInfo getUriInfo() {
		return uriInfo;
	}

	/**
	 * Sets the uri info.
	 *
	 * @param uriInfo the new uri info
	 */
	public void setUriInfo(UriInfo uriInfo) {
		this.uriInfo = uriInfo;
	}
	
	
}