~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to nova/db/api.py

  • Committer: Cerberus
  • Date: 2011-02-28 17:39:23 UTC
  • mfrom: (749 nova)
  • mto: This revision was merged to the branch mainline in revision 762.
  • Revision ID: matt.dietz@rackspace.com-20110228173923-1e3upi2ddoc2j4xl
Merge from trunk and merge conflict resolution

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
 
91
91
 
92
92
def service_get_all(context, disabled=False):
93
 
    """Get all service."""
94
 
    return IMPL.service_get_all(context, None, disabled)
 
93
    """Get all services."""
 
94
    return IMPL.service_get_all(context, disabled)
95
95
 
96
96
 
97
97
def service_get_all_by_topic(context, topic):
657
657
###############
658
658
 
659
659
 
660
 
def auth_destroy_token(context, token):
 
660
def auth_token_destroy(context, token_id):
661
661
    """Destroy an auth token."""
662
 
    return IMPL.auth_destroy_token(context, token)
663
 
 
664
 
 
665
 
def auth_get_token(context, token_hash):
 
662
    return IMPL.auth_token_destroy(context, token_id)
 
663
 
 
664
 
 
665
def auth_token_get(context, token_hash):
666
666
    """Retrieves a token given the hash representing it."""
667
 
    return IMPL.auth_get_token(context, token_hash)
668
 
 
669
 
 
670
 
def auth_create_token(context, token):
 
667
    return IMPL.auth_token_get(context, token_hash)
 
668
 
 
669
 
 
670
def auth_token_update(context, token_hash, values):
 
671
    """Updates a token given the hash representing it."""
 
672
    return IMPL.auth_token_update(context, token_hash, values)
 
673
 
 
674
 
 
675
def auth_token_create(context, token):
671
676
    """Creates a new token."""
672
 
    return IMPL.auth_create_token(context, token)
 
677
    return IMPL.auth_token_create(context, token)
673
678
 
674
679
 
675
680
###################