Merge "Standardize documentation at Service Managers"

This commit is contained in:
Jenkins 2015-07-15 21:11:12 +00:00 committed by Gerrit Code Review
commit c0fc3e3994
9 changed files with 19 additions and 10 deletions

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the assignment service."""
"""Main entry point into the Assignment service."""
import abc

View File

@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the Endpoint Filter service."""
import abc
from oslo_config import cfg

View File

@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into this Example service."""
from oslo_log import log
from keystone.common import dependency
@ -27,7 +29,7 @@ LOG = log.getLogger(__name__)
@notifications.listener # NOTE(dstanek): only needed if using event_callbacks
@dependency.provider('example_api')
class ExampleManager(manager.Manager):
"""Example Manager.
"""Default pivot point for this Example backend.
See :mod:`keystone.common.manager.Manager` for more details on
how this dynamically calls the backend.

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Extensions supporting OAuth1."""
"""Main entry point into the OAuth1 service."""
from __future__ import absolute_import

View File

@ -10,6 +10,8 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the Revoke service."""
import abc
import datetime
@ -64,10 +66,13 @@ def revoked_before_cutoff_time():
@dependency.provider('revoke_api')
class Manager(manager.Manager):
"""Revoke API Manager.
"""Default pivot point for the Revoke backend.
Performs common logic for recording revocations.
See :mod:`keystone.common.manager.Manager` for more details on
how this dynamically calls the backend.
"""
driver_namespace = 'keystone.revoke'

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the Credentials service."""
"""Main entry point into the Credential service."""
import abc

View File

@ -10,7 +10,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the resource service."""
"""Main entry point into the Resource service."""
import abc
@ -47,7 +47,7 @@ def calc_default_domain():
@dependency.requires('assignment_api', 'credential_api', 'domain_config_api',
'identity_api', 'revoke_api')
class Manager(manager.Manager):
"""Default pivot point for the resource backend.
"""Default pivot point for the Resource backend.
See :mod:`keystone.common.manager.Manager` for more details on how this
dynamically calls the backend.

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the Token persistence service."""
"""Main entry point into the Token Persistence service."""
import abc
import copy
@ -40,7 +40,7 @@ REVOCATION_MEMOIZE = cache.get_memoization_decorator(
@dependency.requires('assignment_api', 'identity_api', 'resource_api',
'token_provider_api', 'trust_api')
class PersistenceManager(manager.Manager):
"""Default pivot point for the Token backend.
"""Default pivot point for the Token Persistence backend.
See :mod:`keystone.common.manager.Manager` for more details on how this
dynamically calls the backend.

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
"""Main entry point into the Identity service."""
"""Main entry point into the Trust service."""
import abc