author | weijun |
Tue, 11 Aug 2009 12:20:32 +0800 | |
changeset 3483 | a16fce1820ef |
parent 3482 | 4aaa66ce712d |
child 4336 | 4c792c19266e |
permissions | -rw-r--r-- |
3482 | 1 |
/* |
2 |
* Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
||
26 |
package com.sun.security.jgss; |
|
27 |
||
28 |
import org.ietf.jgss.*; |
|
29 |
||
30 |
/** |
|
31 |
* The extended GSSContext interface for supporting additional |
|
32 |
* functionalities not defined by {@code org.ietf.jgss.GSSContext}, |
|
33 |
* such as querying context-specific attributes. |
|
34 |
*/ |
|
35 |
public interface ExtendedGSSContext extends GSSContext { |
|
36 |
/** |
|
37 |
* Return the mechanism-specific attribute associated with {@code type}. |
|
38 |
* <br><br> |
|
39 |
* For each supported attribute type, the type for the output are |
|
40 |
* defined below. |
|
41 |
* <ol> |
|
3483
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
42 |
* <li>{@code KRB5_GET_TKT_FLAGS}: |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
43 |
* the returned object is a boolean array for the service ticket flags, |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
44 |
* which is long enough to contain all true bits. This means if |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
45 |
* the user wants to get the <em>n</em>'th bit but the length of the |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
46 |
* returned array is less than <em>n</em>, it is regarded as false. |
3482 | 47 |
* <li>{@code KRB5_GET_SESSION_KEY}: |
48 |
* the returned object is an instance of {@link java.security.Key}, |
|
49 |
* which has the following properties: |
|
50 |
* <ul> |
|
51 |
* <li>Algorithm: enctype as a string, where |
|
52 |
* enctype is defined in RFC 3961, section 8. |
|
53 |
* <li>Format: "RAW" |
|
54 |
* <li>Encoded form: the raw key bytes, not in any ASN.1 encoding |
|
55 |
* </ul> |
|
3483
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
56 |
* <li>{@code KRB5_GET_AUTHZ_DATA}: |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
57 |
* the returned object is an array of |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
58 |
* {@link com.sun.security.jgss.AuthorizationDataEntry}, or null if the |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
59 |
* optional field is missing in the service ticket. |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
60 |
* <li>{@code KRB5_GET_AUTHTIME}: |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
61 |
* the returned object is a String object in the standard KerberosTime |
a16fce1820ef
6821190: more InquireType values for ExtendedGSSContext
weijun
parents:
3482
diff
changeset
|
62 |
* format defined in RFC 4120 5.2.3 |
3482 | 63 |
* </ol> |
64 |
* |
|
65 |
* If there is a security manager, an {@link InquireSecContextPermission} |
|
66 |
* with the name {@code type.mech} must be granted. Otherwise, this could |
|
67 |
* result in a {@link SecurityException}.<p> |
|
68 |
* |
|
69 |
* Example: |
|
70 |
* <pre> |
|
71 |
* GSSContext ctxt = m.createContext(...) |
|
72 |
* // Establishing the context |
|
73 |
* if (ctxt instanceof ExtendedGSSContext) { |
|
74 |
* ExtendedGSSContext ex = (ExtendedGSSContext)ctxt; |
|
75 |
* try { |
|
76 |
* Key key = (key)ex.inquireSecContext( |
|
77 |
* InquireType.KRB5_GET_SESSION_KEY); |
|
78 |
* // read key info |
|
79 |
* } catch (GSSException gsse) { |
|
80 |
* // deal with exception |
|
81 |
* } |
|
82 |
* } |
|
83 |
* </pre> |
|
84 |
* @param type the type of the attribute requested |
|
85 |
* @return the attribute, see the method documentation for details. |
|
86 |
* @throws GSSException containing the following |
|
87 |
* major error codes: |
|
88 |
* {@link GSSException#BAD_MECH GSSException.BAD_MECH} if the mechanism |
|
89 |
* does not support this method, |
|
90 |
* {@link GSSException#UNAVAILABLE GSSException.UNAVAILABLE} if the |
|
91 |
* type specified is not supported, |
|
92 |
* {@link GSSException#NO_CONTEXT GSSException.NO_CONTEXT} if the |
|
93 |
* security context is invalid, |
|
94 |
* {@link GSSException#FAILURE GSSException.FAILURE} for other |
|
95 |
* unspecified failures. |
|
96 |
* @throws SecurityException if a security manager exists and a proper |
|
97 |
* {@link InquireSecContextPermission} is not granted. |
|
98 |
* @see InquireSecContextPermission |
|
99 |
*/ |
|
100 |
public Object inquireSecContext(InquireType type) |
|
101 |
throws GSSException; |
|
102 |
} |