aboutsummaryrefslogtreecommitdiffstats
path: root/ajsc-aai/src/main/ajsc/ajsc-aai_v1/ajsc-aai/v1/conf/jaxrsBeans.groovy
blob: 67ad8948d91bcad86b9e1abe6a93cc9f3d33d1a5 (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
beans{
	xmlns cxf: "http://camel.apache.org/schema/cxf"
	xmlns jaxrs: "http://cxf.apache.org/jaxrs"
	xmlns util: "http://www.springframework.org/schema/util"

	RestProviders(org.openecomp.aai.rest.RestProviders)
	LegacyMoxyConsumer(org.openecomp.aai.rest.LegacyMoxyConsumer)
	URLFromVertexIdConsumer(org.openecomp.aai.rest.URLFromVertexIdConsumer)
	VertexIdConsumer(org.openecomp.aai.rest.VertexIdConsumer)
	BulkAddConsumer(org.openecomp.aai.rest.BulkAddConsumer)
	ExampleConsumer(org.openecomp.aai.rest.ExampleConsumer)
	SearchProvider(org.openecomp.aai.rest.search.SearchProvider)
	ModelAndNamedQueryRestProvider(org.openecomp.aai.rest.search.ModelAndNamedQueryRestProvider)
	ActionsProvider(org.openecomp.aai.rest.actions.ActionsProvider)
	
	TransLogRestProvider(org.openecomp.aai.rest.translog.TransLogRestProvider)
	EchoResponse(org.openecomp.aai.rest.util.EchoResponse)


	util.list(id: 'jaxrsServices') {
		
		//ref(bean:'RestProviders')
		ref(bean:'ExampleConsumer')
		ref(bean:'LegacyMoxyConsumer')
		ref(bean:'VertexIdConsumer')
		ref(bean:'URLFromVertexIdConsumer')
		ref(bean:'BulkAddConsumer')
		ref(bean:'SearchProvider')
		ref(bean:'ModelAndNamedQueryRestProvider')
		ref(bean:'ActionsProvider')

		
		ref(bean:'TransLogRestProvider')
		ref(bean:'EchoResponse')
	}
}