27 lines
866 B
Diff
27 lines
866 B
Diff
|
|
From f038592a60a50cdf263875c6ebc440a322f1c543 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Marek Goldmann <marek.goldmann@gmail.com>
|
||
|
|
Date: Mon, 7 Jul 2014 12:43:24 +0200
|
||
|
|
Subject: [PATCH] JDK8 support
|
||
|
|
|
||
|
|
---
|
||
|
|
src/org/jacorb/security/sas/GSSUPCredentialSpi.java | 5 +++++
|
||
|
|
1 file changed, 5 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/src/org/jacorb/security/sas/GSSUPCredentialSpi.java b/src/org/jacorb/security/sas/GSSUPCredentialSpi.java
|
||
|
|
index efc8833..da5cb4c 100644
|
||
|
|
--- a/src/org/jacorb/security/sas/GSSUPCredentialSpi.java
|
||
|
|
+++ b/src/org/jacorb/security/sas/GSSUPCredentialSpi.java
|
||
|
|
@@ -97,4 +97,9 @@ public final class GSSUPCredentialSpi implements GSSCredentialSpi
|
||
|
|
{
|
||
|
|
return myMechOid;
|
||
|
|
}
|
||
|
|
+
|
||
|
|
+ public GSSCredentialSpi impersonate(GSSNameSpi name) throws GSSException
|
||
|
|
+ {
|
||
|
|
+ throw new GSSException(GSSException.FAILURE, -1, "Not supported yet");
|
||
|
|
+ }
|
||
|
|
}
|
||
|
|
--
|
||
|
|
1.9.3
|
||
|
|
|