tools.samt.api.transports.http.TransportMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of public-api Show documentation
Show all versions of public-api Show documentation
Public API for creating custom SAMT plugins.
The newest version!
package tools.samt.api.transports.http
/** How a given parameter is transported over HTTP */
enum class TransportMode {
/** encoded in request body via serializationMode */
Body,
/** encoded as url query parameter */
QueryParameter,
/** encoded as part of url path */
Path,
/** encoded as HTTP header */
Header,
/** encoded as HTTP cookie */
Cookie,
}