~asomya/+junk/quantum-dev

« back to all changes in this revision

Viewing changes to etc/quantum/api-paste.ini

* Merged changes from Salvatore's branch - quantum-api-workinprogress
* Removed spurious methods from quantum_base_plugin class.
* Updated the sample plugins to be compliant with the new QuantumBase class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#############
 
2
# Quantum   #
 
3
#############
 
4
 
 
5
[composite:quantumapi]
 
6
use = egg:Paste#urlmap
 
7
/: quantumversions
 
8
/v1.0: quantumapi10
 
9
 
 
10
[pipeline:quantumapi10]
 
11
pipeline = faultwrap auth ratelimit quantumapiapp10
 
12
 
 
13
[filter:faultwrap]
 
14
paste.filter_factory = quantum.api:FaultWrapper.factory
 
15
 
 
16
[filter:auth]
 
17
paste.filter_factory = quantum.api.auth:AuthMiddleware.factory
 
18
 
 
19
[filter:ratelimit]
 
20
paste.filter_factory = quantum.api.limits:RateLimitingMiddleware.factory
 
21
 
 
22
[app:quantumapiapp10]
 
23
paste.app_factory = nova.api.quantum:APIRouterV10.factory
 
24
 
 
25
[pipeline:quantumversions]
 
26
pipeline = faultwrap quantumversionapp
 
27
 
 
28
[app:quantumversionapp]
 
29
paste.app_factory = quantum.api.versions:Versions.factory