alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

JMeter example source code file (HTTPConstantsInterface.java)

This example JMeter source code file (HTTPConstantsInterface.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - JMeter tags/keywords

delete, etag, get, head, non-nls-1, non-nls-1, options, post, post, put, put, string, string, trace

The JMeter HTTPConstantsInterface.java source code

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

package org.apache.jmeter.protocol.http.util;


/**
 * Constants used in HTTP, mainly header names.
 */

public interface HTTPConstantsInterface {

    public static final int DEFAULT_HTTPS_PORT = 443;
    public static final String DEFAULT_HTTPS_PORT_STRING = "443"; // $NON-NLS-1$
    public static final int    DEFAULT_HTTP_PORT = 80;
    public static final String DEFAULT_HTTP_PORT_STRING = "80"; // $NON-NLS-1$
    public static final String PROTOCOL_HTTP = "http"; // $NON-NLS-1$
    public static final String PROTOCOL_HTTPS = "https"; // $NON-NLS-1$
    public static final String HEAD = "HEAD"; // $NON-NLS-1$
    public static final String POST = "POST"; // $NON-NLS-1$
    public static final String PUT = "PUT"; // $NON-NLS-1$
    public static final String GET = "GET"; // $NON-NLS-1$
    public static final String OPTIONS = "OPTIONS"; // $NON-NLS-1$
    public static final String TRACE = "TRACE"; // $NON-NLS-1$
    public static final String DELETE = "DELETE"; // $NON-NLS-1$
    public static final String CONNECT = "CONNECT"; // $NON-NLS-1$
    public static final String HEADER_AUTHORIZATION = "Authorization"; // $NON-NLS-1$
    public static final String HEADER_COOKIE = "Cookie"; // $NON-NLS-1$
    public static final String HEADER_CONNECTION = "Connection"; // $NON-NLS-1$
    public static final String CONNECTION_CLOSE = "close"; // $NON-NLS-1$
    public static final String KEEP_ALIVE = "keep-alive"; // $NON-NLS-1$
    // e.g. "Transfer-Encoding: chunked", which is processed automatically by the underlying protocol
    public static final String TRANSFER_ENCODING = "transfer-encoding"; // $NON-NLS-1$
    public static final String HEADER_CONTENT_ENCODING = "content-encoding"; // $NON-NLS-1$
    public static final String HTTP_1_1 = "HTTP/1.1"; // $NON-NLS-1$
    public static final String HEADER_SET_COOKIE = "set-cookie"; // $NON-NLS-1$
    public static final String ENCODING_GZIP = "gzip"; // $NON-NLS-1$
    public static final String HEADER_CONTENT_DISPOSITION = "Content-Disposition"; // $NON-NLS-1$
    public static final String HEADER_CONTENT_TYPE = "Content-Type"; // $NON-NLS-1$
    public static final String HEADER_CONTENT_LENGTH = "Content-Length"; // $NON-NLS-1$
    public static final String HEADER_LOCATION = "Location"; // $NON-NLS-1$
    public static final String APPLICATION_X_WWW_FORM_URLENCODED = "application/x-www-form-urlencoded"; // $NON-NLS-1$
    public static final String MULTIPART_FORM_DATA = "multipart/form-data"; // $NON-NLS-1$
    // For handling caching
    public static final String IF_NONE_MATCH = "If-None-Match"; // $NON-NLS-1$
    public static final String IF_MODIFIED_SINCE = "If-Modified-Since"; // $NON-NLS-1$
    public static final String ETAG = "Etag"; // $NON-NLS-1$
    public static final String LAST_MODIFIED = "Last-Modified"; // $NON-NLS-1$
    public static final String EXPIRES = "Expires"; // $NON-NLS-1$
    public static final String CACHE_CONTROL = "Cache-Control";  //e.g. public, max-age=259200

}

Other JMeter examples (source code examples)

Here is a short list of links related to this JMeter HTTPConstantsInterface.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.