NotNullNotBlank

@Target(allowedTargets = [AnnotationTarget.FIELD])
@Constraint(validatedBy = [NullableNotBlankValidator::class])
annotation class NotNullNotBlank(    val message: String = "Must not be null and not blank",     val groups: Array<KClass<*>> = [],     val payload: Array<KClass<out Payload>> = [])

Constructors

Link copied to clipboard
fun NotNullNotBlank(    message: String = "Must not be null and not blank",     groups: Array<KClass<*>> = [],     payload: Array<KClass<out Payload>> = [])

Properties

Link copied to clipboard
val groups: Array<KClass<*>>
Link copied to clipboard
val message: String
Link copied to clipboard
val payload: Array<KClass<out Payload>>