Changeset 8080 for trunk/ndg_oauth/ndg_oauth_server
- Timestamp:
- 09/07/12 12:39:59 (9 years ago)
- Location:
- trunk/ndg_oauth/ndg_oauth_server
- Files:
-
- 24 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ndg_oauth/ndg_oauth_server/development.ini
r8057 r8080 111 111 # OAuth2 server configuration options - defaults are commented out. 112 112 #oauth2server.access_token_lifetime=86400 113 # Allowed values: myproxy(default) or bearer (which returns a UUID)114 #oauth2server.access_token_type= myproxy113 # Allowed values: slcs (default) or bearer (which returns a UUID) 114 #oauth2server.access_token_type=slcs 115 115 oauth2server.access_token_type=bearer 116 116 #oauth2server.authorization_grant_lifetime=600 -
trunk/ndg_oauth/ndg_oauth_server/ndg/__init__.py
r8030 r8080 1 """NDG OAuth Server ndg namespace package for server code 2 3 This is a setuptools namespace_package. DO NOT place any other 4 code in this file! There is no guarantee that it will be installed 5 with easy_install. See: 6 7 http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages 8 9 ... for details. 10 """ 11 __author__ = "P J Kershaw" 12 __date__ = "09/07/12" 13 __copyright__ = "(C) 2012 Science and Technology Facilities Council" 14 __license__ = "BSD - see LICENSE file in top-level directory" 15 __contact__ = "Philip.Kershaw@stfc.ac.uk" 16 __revision__ = '$Id$' 17 18 __import__('pkg_resources').declare_namespace(__name__) -
trunk/ndg_oauth/ndg_oauth_server/ndg/oauth/__init__.py
r8030 r8080 1 """NDG OAuth Server ndg.oauth namespace package for server code 2 3 This is a setuptools namespace_package. DO NOT place any other 4 code in this file! There is no guarantee that it will be installed 5 with easy_install. See: 6 7 http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages 8 9 ... for details. 10 """ 11 __author__ = "P J Kershaw" 12 __date__ = "09/07/12" 13 __copyright__ = "(C) 2012 Science and Technology Facilities Council" 14 __license__ = "BSD - see LICENSE file in top-level directory" 15 __contact__ = "Philip.Kershaw@stfc.ac.uk" 16 __revision__ = '$Id$' 17 18 __import__('pkg_resources').declare_namespace(__name__) -
trunk/ndg_oauth/ndg_oauth_server/ndg/oauth/server/wsgi/oauth2_server.py
r8075 r8080 16 16 from webob import Request 17 17 18 from ndg.oauth.server.lib.access_token.bearer_token_generator import BearerTokenGenerator 19 from ndg.oauth.server.lib.access_token.myproxy_cert_token_generator import MyProxyCertTokenGenerator 20 from ndg.oauth.server.lib.authenticate.certificate_client_authenticator import CertificateClientAuthenticator 21 from ndg.oauth.server.lib.authenticate.noop_client_authenticator import NoopClientAuthenticator 18 from ndg.oauth.server.lib.access_token.bearer_token_generator import \ 19 BearerTokenGenerator 20 from ndg.oauth.server.lib.access_token.myproxy_cert_token_generator \ 21 import MyProxyCertTokenGenerator 22 from ndg.oauth.server.lib.authenticate.certificate_client_authenticator \ 23 import CertificateClientAuthenticator 24 from ndg.oauth.server.lib.authenticate.noop_client_authenticator import \ 25 NoopClientAuthenticator 22 26 from ndg.oauth.server.lib.authorization_server import AuthorizationServer 23 from ndg.oauth.server.lib.authorize.authorizer_storing_identifier import AuthorizerStoringIdentifier 24 from ndg.oauth.server.lib.resource_request.myproxy_cert_request import MyproxyCertRequest 27 from ndg.oauth.server.lib.authorize.authorizer_storing_identifier import \ 28 AuthorizerStoringIdentifier 29 from ndg.oauth.server.lib.resource_request.myproxy_cert_request import \ 30 MyproxyCertRequest 25 31 26 32 log = logging.getLogger(__name__)
Note: See TracChangeset
for help on using the changeset viewer.