org.octopusden.employee.service.UserAvailableUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of employee-service Show documentation
Show all versions of employee-service Show documentation
Octopus module: employee-service
The newest version!
package org.octopusden.employee.service
import org.apache.commons.lang.text.StrSubstitutor
import java.util.stream.Collectors
fun formatJQL(jql: String, users: Collection): String = StrSubstitutor(
mapOf(
"usernames" to users
.stream()
.collect(Collectors.joining(","))
),
"{", "}"
)
.replace(jql)