
rt.pipeline.UserInfo.xtend Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rts-pipeline Show documentation
Show all versions of rts-pipeline Show documentation
Framework to build reactive services for reactive application front-ends
The newest version!
package rt.pipeline
import java.util.Set
import java.util.List
class UserInfo {
public val String name
public val Set groups
new(String name, List groups) {
this.name = name
this.groups = groups.toSet
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy