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

org.octopusden.employee.service.UserAvailableUtils.kt Maven / Gradle / Ivy

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)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy