8311003: missing @since info in jdk.security.jgss
Reviewed-by: mullan
This commit is contained in:
parent
09a78b5da9
commit
c26c5833cc
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2009, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -27,6 +27,8 @@ package com.sun.security.jgss;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Kerberos 5 AuthorizationData entry.
|
* Kerberos 5 AuthorizationData entry.
|
||||||
|
*
|
||||||
|
* @since 1.7
|
||||||
*/
|
*/
|
||||||
public final class AuthorizationDataEntry {
|
public final class AuthorizationDataEntry {
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2009, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -31,6 +31,8 @@ import org.ietf.jgss.*;
|
|||||||
* The extended GSSContext interface for supporting additional
|
* The extended GSSContext interface for supporting additional
|
||||||
* functionalities not defined by {@code org.ietf.jgss.GSSContext},
|
* functionalities not defined by {@code org.ietf.jgss.GSSContext},
|
||||||
* such as querying context-specific attributes.
|
* such as querying context-specific attributes.
|
||||||
|
*
|
||||||
|
* @since 1.7
|
||||||
*/
|
*/
|
||||||
public interface ExtendedGSSContext extends GSSContext {
|
public interface ExtendedGSSContext extends GSSContext {
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -32,6 +32,8 @@ import org.ietf.jgss.GSSCredential;
|
|||||||
/**
|
/**
|
||||||
* GSS-API Utilities for using in conjunction with Sun Microsystem's
|
* GSS-API Utilities for using in conjunction with Sun Microsystem's
|
||||||
* implementation of Java GSS-API.
|
* implementation of Java GSS-API.
|
||||||
|
*
|
||||||
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public class GSSUtil {
|
public class GSSUtil {
|
||||||
/**
|
/**
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2009, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -34,6 +34,8 @@ import java.security.BasicPermission;
|
|||||||
* method.
|
* method.
|
||||||
*
|
*
|
||||||
* <p>The target name is the {@link InquireType} allowed.
|
* <p>The target name is the {@link InquireType} allowed.
|
||||||
|
*
|
||||||
|
* @since 1.7
|
||||||
*/
|
*/
|
||||||
public final class InquireSecContextPermission extends BasicPermission {
|
public final class InquireSecContextPermission extends BasicPermission {
|
||||||
private static final long serialVersionUID = -7131173349668647297L;
|
private static final long serialVersionUID = -7131173349668647297L;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2009, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -28,6 +28,8 @@ package com.sun.security.jgss;
|
|||||||
/**
|
/**
|
||||||
* Attribute types that can be specified as an argument of
|
* Attribute types that can be specified as an argument of
|
||||||
* {@link com.sun.security.jgss.ExtendedGSSContext#inquireSecContext}
|
* {@link com.sun.security.jgss.ExtendedGSSContext#inquireSecContext}
|
||||||
|
*
|
||||||
|
* @since 1.7
|
||||||
*/
|
*/
|
||||||
public enum InquireType {
|
public enum InquireType {
|
||||||
/**
|
/**
|
||||||
|
@ -26,5 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* This package defines classes and interfaces for the JDK extensions
|
* This package defines classes and interfaces for the JDK extensions
|
||||||
* to the GSS-API.
|
* to the GSS-API.
|
||||||
|
*
|
||||||
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
package com.sun.security.jgss;
|
package com.sun.security.jgss;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user