Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TokenHandler.java « auth « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f09c019c2d040f26f8c43e72bd49d1cc2990772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mapswithme.maps.auth;

import android.content.Intent;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import com.mapswithme.maps.Framework;

interface TokenHandler
{
  boolean checkToken(int requestCode, @NonNull Intent data);

  @Nullable
  String getToken();

  @Framework.AuthTokenType
  int getType();
}