8332015: since-checker - Add @ since tags to jdk.httpserver

Reviewed-by: alanb, dfuchs, michaelm
This commit is contained in:
Nizar Benalla 2024-06-04 11:38:54 +00:00 committed by Michael McMahon
parent 0f4154a9e9
commit 9ee741d1e5
2 changed files with 4 additions and 1 deletions

View File

@ -85,6 +85,8 @@ public abstract class BasicAuthenticator extends Authenticator {
* correctly quoted, as specified in <a href="https://tools.ietf.org/html/rfc7230#section-3.2">
* RFC 7230 section-3.2</a>. Note, any {@code \} character used for
* quoting must itself be quoted in source code.
*
* @since 14
*/
public BasicAuthenticator(String realm, Charset charset) {
Objects.requireNonNull(charset);

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2024, 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
@ -26,5 +26,6 @@
/**
* Provides a pluggable service provider interface, which allows the HTTP server
* implementation to be replaced with other implementations.
* @since 1.6
*/
package com.sun.net.httpserver.spi;