12c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar/*
22c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * Copyright (C) 2017 The Android Open Source Project
32c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar *
42c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * Licensed under the Apache License, Version 2.0 (the "License");
52c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * you may not use this file except in compliance with the License.
62c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * You may obtain a copy of the License at
72c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar *
82c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar *      http://www.apache.org/licenses/LICENSE-2.0
92c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar *
102c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * Unless required by applicable law or agreed to in writing, software
112c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * distributed under the License is distributed on an "AS IS" BASIS,
122c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * See the License for the specific language governing permissions and
142c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar * limitations under the License.
152c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar */
162c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar
17bdc4c86d3dff74f6634a38e2f7b316b0e823a2c8Alan Viverettepackage androidx.room.integration.testapp.vo;
182c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar
19bdc4c86d3dff74f6634a38e2f7b316b0e823a2c8Alan Viveretteimport androidx.room.Entity;
20bdc4c86d3dff74f6634a38e2f7b316b0e823a2c8Alan Viveretteimport androidx.room.PrimaryKey;
212c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar
222c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar@Entity
232c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyarpublic class IntegerAutoIncPKeyEntity {
242c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar    @PrimaryKey(autoGenerate = true)
252c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar    public Integer pKey;
262c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar    public String data;
272c6462f129bf43965ed8b054b026f6a28fe6fd8fYigit Boyar}
28