Home | History | Annotate | Download | only in cts
      1 /*
      2  * Copyright (C) 2017 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 android.content.sync.cts;
     18 
     19 import android.annotation.NonNull;
     20 import android.annotation.Nullable;
     21 import android.content.ContentProvider;
     22 import android.content.ContentValues;
     23 import android.database.Cursor;
     24 import android.net.Uri;
     25 
     26 public class StubProvider extends ContentProvider {
     27     @Override
     28     public boolean onCreate() {
     29         return true;
     30     }
     31 
     32     @Override
     33     public Cursor query(@NonNull Uri uri, @Nullable String[] projection,
     34             @Nullable String selection, @Nullable String[] selectionArgs,
     35             @Nullable String sortOrder) {
     36         return null;
     37     }
     38 
     39     @Override
     40     public String getType(@NonNull Uri uri) {
     41         return null;
     42     }
     43 
     44     @Override
     45     public Uri insert(@NonNull Uri uri, @Nullable ContentValues values) {
     46         return null;
     47     }
     48 
     49     @Override
     50     public int delete(@NonNull Uri uri, @Nullable String selection,
     51             @Nullable String[] selectionArgs) {
     52         return 0;
     53     }
     54 
     55     @Override
     56     public int update(@NonNull Uri uri, @Nullable ContentValues values,
     57             @Nullable String selection, @Nullable String[] selectionArgs) {
     58         return 0;
     59     }
     60 }
     61