8164397: Provide javadoc descriptions for the jdk.security.auth and jdk.security.jgss modules

Reviewed-by: weijun, xuelei
This commit is contained in:
Sean Mullan 2016-08-22 08:50:40 -04:00
parent 86a27697b7
commit ffafa6e0c8
2 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,6 +23,10 @@
* questions.
*/
/**
* Contains the implementation of the javax.security.auth.* interfaces and
* various authentication modules.
*/
module jdk.security.auth {
requires public java.naming;
requires java.security.jgss;

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,6 +23,10 @@
* questions.
*/
/**
* Defines Java extensions to the GSS-API and an implementation of the SASL
* GSSAPI mechanism.
*/
module jdk.security.jgss {
requires public java.security.jgss;
requires java.logging;