summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jordan Liu <jminjie@google.com> 2017-06-09 17:25:08 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-06-09 17:25:10 +0000
commit1d5d409f6f9b38f4075e8526f0932dd6a08f8d0c (patch)
treed7bbbaeccc7ab5436f846ba8db7562617d020a72
parent29213205173a632c65b77525da00419f47462509 (diff)
parente5c7420f45a5bae24c07201efd31ee93b8a17c0a (diff)
Merge "Add IApnSourceService.aidl"
-rw-r--r--Android.mk1
-rw-r--r--telephony/java/com/android/internal/telephony/IApnSourceService.aidl24
2 files changed, 25 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 435d571c0fc2..5f759cbd843c 100644
--- a/Android.mk
+++ b/Android.mk
@@ -464,6 +464,7 @@ LOCAL_SRC_FILES += \
telephony/java/com/android/ims/internal/uce/presence/IPresenceService.aidl \
telephony/java/com/android/ims/internal/uce/presence/IPresenceListener.aidl \
telephony/java/com/android/ims/ImsConfigListener.aidl \
+ telephony/java/com/android/internal/telephony/IApnSourceService.aidl \
telephony/java/com/android/internal/telephony/ICarrierConfigLoader.aidl \
telephony/java/com/android/internal/telephony/IMms.aidl \
telephony/java/com/android/internal/telephony/IOnSubscriptionsChangedListener.aidl \
diff --git a/telephony/java/com/android/internal/telephony/IApnSourceService.aidl b/telephony/java/com/android/internal/telephony/IApnSourceService.aidl
new file mode 100644
index 000000000000..07bb18b6cd1b
--- /dev/null
+++ b/telephony/java/com/android/internal/telephony/IApnSourceService.aidl
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.internal.telephony;
+
+import android.content.ContentValues;
+
+interface IApnSourceService {
+ /** Retreive APNs. */
+ ContentValues[] getApns();
+}