author | lana |
Thu, 10 Jun 2010 18:58:31 -0700 | |
changeset 5753 | e0ee3917e318 |
parent 5506 | 202f599c92aa |
child 8396 | 587947f96036 |
permissions | -rw-r--r-- |
3220
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
1 |
/* |
5506 | 2 |
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. |
3220
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
4 |
* |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
8 |
* |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
13 |
* accompanied this code). |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
14 |
* |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
18 |
* |
5506 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
3220
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
22 |
*/ |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
23 |
|
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
24 |
/* |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
25 |
* @test |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
26 |
* @bug 6857802 |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
27 |
* @summary GSS getRemainingInitLifetime method returns milliseconds not seconds |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
28 |
*/ |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
29 |
import org.ietf.jgss.GSSCredential; |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
30 |
import org.ietf.jgss.GSSManager; |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
31 |
|
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
32 |
public class LifeTimeInSeconds { |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
33 |
public static void main(String[] args) throws Exception { |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
34 |
new OneKDC(null).writeJAASConf(); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
35 |
System.setProperty("javax.security.auth.useSubjectCredsOnly", "false"); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
36 |
|
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
37 |
GSSManager gm = GSSManager.getInstance(); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
38 |
GSSCredential cred = gm.createCredential(GSSCredential.INITIATE_AND_ACCEPT); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
39 |
int time = cred.getRemainingLifetime(); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
40 |
int time2 = cred.getRemainingInitLifetime(null); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
41 |
// The test KDC issues a TGT with a default lifetime of 11 hours |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
42 |
int elevenhrs = 11*3600; |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
43 |
if (time > elevenhrs+60 || time < elevenhrs-60) { |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
44 |
throw new Exception("getRemainingLifetime returns wrong value."); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
45 |
} |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
46 |
if (time2 > elevenhrs+60 || time2 < elevenhrs-60) { |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
47 |
throw new Exception("getRemainingInitLifetime returns wrong value."); |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
48 |
} |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
49 |
} |
5516f07e05d0
6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff
changeset
|
50 |
} |