17903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng/*
27903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * Copyright (C) 2012 The Android Open Source Project
37903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng *
47903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * Licensed under the Apache License, Version 2.0 (the "License");
57903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * you may not use this file except in compliance with the License.
67903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * You may obtain a copy of the License at
77903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng *
87903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng *      http://www.apache.org/licenses/LICENSE-2.0
97903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng *
107903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * Unless required by applicable law or agreed to in writing, software
117903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * distributed under the License is distributed on an "AS IS" BASIS,
127903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
137903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * See the License for the specific language governing permissions and
147903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * limitations under the License.
157903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng */
167903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng
177903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Chengpackage com.android.contacts.common.vcard;
187903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng
197903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng/**
207903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng * Argument constants used by many activities and services.
217903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng */
227903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Chengpublic class VCardCommonArguments {
237903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng
247903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng    // Argument used to pass calling activities to the target activity or service.
257903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng    // The value should be a string class name (e.g. com.android.contacts.vcard.VCardCommonArgs)
267903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng    public static final String ARG_CALLING_ACTIVITY = "CALLING_ACTIVITY";
277903d2473e1120e32fa5380a7d7532d0a21e2180Chiao Cheng}
28