tech.jhipster.lite.module.domain.startupcommand.JHipsterStartupCommands Maven / Gradle / Ivy
package tech.jhipster.lite.module.domain.startupcommand;
import java.util.Collection;
import tech.jhipster.lite.shared.collection.domain.JHipsterCollections;
public record JHipsterStartupCommands(Collection extends JHipsterStartupCommand> commands) {
public JHipsterStartupCommands(Collection extends JHipsterStartupCommand> commands) {
this.commands = JHipsterCollections.immutable(commands);
}
@SuppressWarnings("unchecked")
public Collection get() {
return (Collection) commands;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy