1d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng/*
2d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * Copyright (C) 2010 The Android Open Source Project
3d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng *
4d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * Licensed under the Apache License, Version 2.0 (the "License");
5d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * you may not use this file except in compliance with the License.
6d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * You may obtain a copy of the License at
7d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng *
8d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng *      http://www.apache.org/licenses/LICENSE-2.0
9d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng *
10d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * Unless required by applicable law or agreed to in writing, software
11d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * distributed under the License is distributed on an "AS IS" BASIS,
12d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * See the License for the specific language governing permissions and
14d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng * limitations under the License.
15d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng */
1669c182afb0e6d82a341a28b4317aa703af768906Gary Maipackage com.android.contacts.vcard;
17d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng
18d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Chengimport android.net.Uri;
19d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng
20d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Chengpublic class ExportRequest {
21d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    public final Uri destUri;
22d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    /**
23d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng     * Can be null.
24d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng     */
25d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    public final String exportType;
26d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng
27d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    public ExportRequest(Uri destUri) {
28d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng        this(destUri, null);
29d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    }
30d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng
31d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    public ExportRequest(Uri destUri, String exportType) {
32d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng        this.destUri = destUri;
33d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng        this.exportType = exportType;
34d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng    }
35d80c4348dd6db1046fdade375a8d8c616d93e7acChiao Cheng}
36