IMS: getPCSCF() API enhanced to support multiple APN types.

Change-Id: I7c990ceee10da6ea6be7e531526f89fd06f5694e
Signed-off-by: ram <ram.pl@samsung.com>
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index a55ade6..59cd3d6 100644
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -1596,9 +1596,9 @@
         return 0;
     }
 
-    public String[] getPcscfAddress() {
+    public String[] getPcscfAddress(String apnType) {
         enforceReadPermission();
-        return mPhone.getPcscfAddress();
+        return mPhone.getPcscfAddress(apnType);
     }
 
     public void setImsRegistrationState(boolean registered) {