All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.swagger.v3.oas.annotations.media.Encoding Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
/**
 * Copyright 2017 SmartBear Software
 * 

* Licensed 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 io.swagger.v3.oas.annotations.media; import io.swagger.v3.oas.annotations.extensions.Extension; import io.swagger.v3.oas.annotations.headers.Header; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * The annotation may be used to add encoding details to the definition of a parameter, request or response content, * by defining it as field {@link Content#encoding()} * * @see Encoding (OpenAPI specification) * @see Content **/ @Target({}) @Retention(RetentionPolicy.RUNTIME) @Inherited public @interface Encoding { /** * The name of this encoding object instance. * This property is a key in encoding map of MediaType object and * MUST exist in a schema as a property. * * @return name of the encoding **/ String name() default ""; /** * The Content-Type for encoding a specific property. * * @return content type of the encoding **/ String contentType() default ""; /** * Describes how a specific property value will be serialized depending on its type * * @return style of the encoding **/ String style() default ""; /** * When this is true, property values of type array or object generate separate parameters for each value of the array, * or key-value-pair of the map. * * @return boolean **/ boolean explode() default false; /** * Determines whether the parameter value SHOULD allow reserved characters, * as defined by RFC3986 to be included without percent-encoding. * * @return boolean **/ boolean allowReserved() default false; /** * An array of header objects * * @return array of headers */ Header[] headers() default {}; /** * The list of optional extensions * * @return an optional array of extensions */ Extension[] extensions() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy