From a556d8298d379f9bc9134a84b8ed7793e02850ab Mon Sep 17 00:00:00 2001
From: v-xiangs <v-xiangs@microsoft.com>
Date: Tue, 11 Apr 2017 17:27:48 -0700
Subject: [PATCH] remove JNI method for ActiveDirectoryPassword Authentication,
 since we no longer use DLL for ActiveDirectoryPassword authentication

---
 .../sqlserver/jdbc/AuthenticationJNI.java     | 21 -------------------
 1 file changed, 21 deletions(-)

diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/AuthenticationJNI.java b/src/main/java/com/microsoft/sqlserver/jdbc/AuthenticationJNI.java
index f212d7674..730db8177 100644
--- a/src/main/java/com/microsoft/sqlserver/jdbc/AuthenticationJNI.java
+++ b/src/main/java/com/microsoft/sqlserver/jdbc/AuthenticationJNI.java
@@ -87,18 +87,6 @@ static FedAuthDllInfo getAccessTokenForWindowsIntegrated(String stsURL,
         return dllInfo;
     }
 
-    static FedAuthDllInfo getAccessToken(String userName,
-            String password,
-            String stsURL,
-            String servicePrincipalName,
-            String clientConnectionId,
-            String clientId,
-            long expirationFileTime) throws DLLException {
-        FedAuthDllInfo dllInfo = ADALGetAccessToken(userName, password, stsURL, servicePrincipalName, clientConnectionId, clientId,
-                expirationFileTime, authLogger);
-        return dllInfo;
-    }
-
     // InitDNSName should be called to initialize the DNSName before calling this function
     byte[] GenerateClientContext(byte[] pin,
             boolean[] done) throws SQLServerException {
@@ -184,15 +172,6 @@ private native static FedAuthDllInfo ADALGetAccessTokenForWindowsIntegrated(Stri
             long expirationFileTime,
             java.util.logging.Logger log);
 
-    private native static FedAuthDllInfo ADALGetAccessToken(String userName,
-            String password,
-            String stsURL,
-            String servicePrincipalName,
-            String clientConnectionId,
-            String clientId,
-            long expirationFileTime,
-            java.util.logging.Logger log);
-
     native static byte[] DecryptColumnEncryptionKey(String masterKeyPath,
             String encryptionAlgorithm,
             byte[] encryptedColumnEncryptionKey) throws DLLException;