• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2021 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.car.debuggingrestrictioncontroller.auth;
18 
19 import com.google.api.client.json.webtoken.JsonWebSignature;
20 import com.google.api.client.util.Key;
21 import java.util.HashMap;
22 
23 public class TokenPayload extends JsonWebSignature.Payload {
24 
25   @Key("nonce")
26   private String nonce;
27 
28   @Key("deviceId")
29   private String deviceId;
30 
31   @Key("restrictions")
32   private HashMap<String, Boolean> restrictions;
33 
getNonce()34   public String getNonce() {
35     return nonce;
36   }
37 
getDeviceId()38   public String getDeviceId() {
39     return deviceId;
40   }
41 
getRestrictions()42   public HashMap<String, Boolean> getRestrictions() {
43     return restrictions;
44   }
45 }
46