org.http4k.contract.security.NoSecurity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-contract Show documentation
Show all versions of http4k-contract Show documentation
http4k typesafe HTTP contracts and OpenApi support
package org.http4k.contract.security
import org.http4k.core.Filter
/**
* Default NoOp security filter. Filter allows all traffic through.
*/
object NoSecurity : Security {
override val filter = Filter { it }
}