HADOOP-7355 Add audience and stability annotations to HttpServer class

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1130729 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-06-02 18:54:40 +00:00
parent 3db6c4a944
commit 01b24a077a
2 changed files with 6 additions and 0 deletions

View File

@ -506,6 +506,9 @@ Release 0.22.0 - Unreleased
HADOOP-7192. Update fs -stat docs to reflect the format features. (Harsh
J Chouraria via todd)
HADOOP-7355 Add audience and stability annotations to HttpServer class
(stack)
OPTIMIZATIONS
HADOOP-6884. Add LOG.isDebugEnabled() guard for each LOG.debug(..).

View File

@ -44,6 +44,7 @@ import javax.servlet.http.HttpServletResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.conf.ConfServlet;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.CommonConfigurationKeys;
@ -85,6 +86,8 @@ import org.mortbay.util.MultiException;
* "/static/" -> points to common static files (src/webapps/static)
* "/" -> the jsp server code from (src/webapps/<name>)
*/
@InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce", "HBase"})
@InterfaceStability.Evolving
public class HttpServer implements FilterContainer {
public static final Log LOG = LogFactory.getLog(HttpServer.class);