001// ***************************************************************************************************************************
002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
003// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
005// * with the License.  You may obtain a copy of the License at                                                              *
006// *                                                                                                                         *
007// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
008// *                                                                                                                         *
009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
011// * specific language governing permissions and limitations under the License.                                              *
012// ***************************************************************************************************************************
013package org.apache.juneau.httppart;
014
015/**
016 * Represents possible enum values that can be passed to the {@link HttpPartSerializerSession#serialize(HttpPartType, HttpPartSchema, Object)}.
017 */
018public enum HttpPartType {
019
020   /** An HTTP request body */
021   BODY,
022
023   /** A URI path variable */
024   PATH,
025
026   /** A URI query parameter */
027   QUERY,
028
029   /** A form-data parameter */
030   FORMDATA,
031
032   /** An HTTP request header */
033   HEADER,
034
035   /** An HTTP response header */
036   RESPONSE_HEADER,
037
038   /** An HTTP response body */
039   RESPONSE_BODY,
040
041   /** An HTTP response status code */
042   RESPONSE_STATUS,
043
044   /** A non-standard field */
045   OTHER,
046
047   /**
048    * @deprecated Use {@link #FORMDATA}.
049    */
050   @Deprecated
051   FORM_DATA;
052}