Beispiel #1
0
 def get_credential(cred_name):
     """Get the username and password."""
     cdb.get_credential_name(TENANT, cred_name)
     return {
         const.USERNAME: const.CREDENTIAL_USERNAME,
         const.PASSWORD: const.CREDENTIAL_PASSWORD
     }
Beispiel #2
0
 def get_credential(cred_name):
     """Get the username and password."""
     cdb.get_credential_name(TENANT, cred_name)
     return {const.USERNAME: const.CREDENTIAL_USERNAME,
             const.PASSWORD: const.CREDENTIAL_PASSWORD}
Beispiel #3
0
 def get_password(cred_name):
     """Get the password."""
     credential = cdb.get_credential_name(TENANT, cred_name)
     return credential[const.CREDENTIAL_PASSWORD]
Beispiel #4
0
 def get_username(cred_name):
     """Get the username."""
     credential = cdb.get_credential_name(TENANT, cred_name)
     return credential[const.CREDENTIAL_USERNAME]
Beispiel #5
0
 def get_password(cred_name):
     """Get the password."""
     credential = cdb.get_credential_name(TENANT, cred_name)
     return credential[const.CREDENTIAL_PASSWORD]
Beispiel #6
0
 def get_username(cred_name):
     """Get the username."""
     credential = cdb.get_credential_name(TENANT, cred_name)
     return credential[const.CREDENTIAL_USERNAME]