Home | History | Annotate | Download | only in model
      1 /*
      2  * Copyright (C) 2018 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.example.android.autofill.service.model;
     18 
     19 import android.arch.persistence.room.ColumnInfo;
     20 import android.arch.persistence.room.Entity;
     21 import android.arch.persistence.room.ForeignKey;
     22 import android.support.annotation.NonNull;
     23 
     24 @Entity(primaryKeys = {"autofillHint"}, foreignKeys = @ForeignKey(
     25         entity = FieldType.class, parentColumns = "typeName", childColumns = "fieldTypeName",
     26         onDelete = ForeignKey.CASCADE))
     27 public class AutofillHint {
     28 
     29     @NonNull
     30     @ColumnInfo(name = "autofillHint")
     31     public String mAutofillHint;
     32 
     33     @NonNull
     34     @ColumnInfo(name = "fieldTypeName")
     35     public String mFieldTypeName;
     36 
     37     public AutofillHint(@NonNull String autofillHint, @NonNull String fieldTypeName) {
     38         this.mAutofillHint = autofillHint;
     39         this.mFieldTypeName = fieldTypeName;
     40     }
     41 }
     42