Home | History | Annotate | Download | only in samplesyncadapter_server

Lines Matching refs:username

58     Process a request to authenticate a client.  We assume that the username
67 self.username = self.request.get('username')
70 logging.info('Authenticatng username: ' + self.username)
72 if ((self.username != None) and
73 (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
88 The request should include username/password parameters that correspond
95 self.username = self.request.get('username')
98 logging.info('Validating username: ' + self.username)
100 if ((self.username != None) and
101 (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
114 request to include username and password fields. It returns authtoken
130 request to include username and authtoken. If the authtoken is valid
219 logging.info('* Processing client changes: ' + self.username)
364 def __init__(self, contact_list, username, client_id, host_url, high_water_mark):
365 obj = datastore.Contact.get_contact_info(username)
382 def __init__(self, contact_list, username, high_water_mark):
383 obj = datastore.Contact.get_contact_info(username)