add escalator frame 01/24601/14
authorJing Sun <sun.jing22@zte.com.cn>
Mon, 21 Nov 2016 07:19:56 +0000 (15:19 +0800)
committerZhou Ya <zhou.ya@zte.com.cn>
Mon, 28 Nov 2016 07:43:12 +0000 (15:43 +0800)
commit240007fb0b972692ce239d601654c4d294ff46a2
tree806ce4410f85c2e8783d3792149b520dc7701dc7
parent7db4ee4e743d8ec55a4552560427c0ff37ec6de5
add escalator frame

JIRA:ESCALATOR-35

This patch will support escalator service,and there is not real command can use.
With this code, you can test with '/usr/bin/escalator-api' from command line.When
service is up, you can use "curl http://127.0.0.1:19393" for verify the service.

Change-Id: I5154328adf82ec70acb6e0ce12ef4b1701f7b710
Signed-off-by: Jing Sun <sun.jing22@zte.com.cn>
41 files changed:
api/AUTHORS [new file with mode: 0644]
api/ChangeLog [new file with mode: 0644]
api/LICENSE [new file with mode: 0644]
api/MANIFEST.in [new file with mode: 0644]
api/README.rst [new file with mode: 0644]
api/babel.cfg [new file with mode: 0644]
api/escalator/__init__.py [new file with mode: 0644]
api/escalator/api/__init__.py [new file with mode: 0644]
api/escalator/api/middleware/__init__.py [new file with mode: 0644]
api/escalator/api/middleware/context.py [new file with mode: 0644]
api/escalator/api/policy.py [new file with mode: 0644]
api/escalator/api/v1/__init__.py [new file with mode: 0644]
api/escalator/api/v1/router.py [new file with mode: 0644]
api/escalator/api/versions.py [new file with mode: 0644]
api/escalator/cmd/__init__.py [new file with mode: 0644]
api/escalator/cmd/api.py [new file with mode: 0644]
api/escalator/common/__init__.py [new file with mode: 0644]
api/escalator/common/auth.py [new file with mode: 0644]
api/escalator/common/client.py [new file with mode: 0644]
api/escalator/common/config.py [new file with mode: 0644]
api/escalator/common/crypt.py [new file with mode: 0644]
api/escalator/common/exception.py [new file with mode: 0644]
api/escalator/common/rpc.py [new file with mode: 0644]
api/escalator/common/utils.py [new file with mode: 0644]
api/escalator/common/wsgi.py [new file with mode: 0644]
api/escalator/context.py [new file with mode: 0644]
api/escalator/i18n.py [new file with mode: 0644]
api/escalator/notifier.py [new file with mode: 0644]
api/escalator/opts.py [new file with mode: 0644]
api/escalator/version.py [new file with mode: 0644]
api/etc/escalator-api-paste.ini [new file with mode: 0644]
api/etc/escalator-api.conf [new file with mode: 0644]
api/etc/oslo-config-generator/escalator-api.conf [new file with mode: 0644]
api/etc/policy.json [new file with mode: 0644]
api/etc/property-protections-policies.conf.sample [new file with mode: 0644]
api/etc/property-protections-roles.conf.sample [new file with mode: 0644]
api/pylintrc [new file with mode: 0644]
api/requirements.txt [new file with mode: 0644]
api/setup.cfg [new file with mode: 0644]
api/setup.py [new file with mode: 0644]
api/tox.ini [new file with mode: 0644]