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

tech.jhipster.lite.module.domain.startupcommand.JHipsterStartupCommands Maven / Gradle / Ivy

There is a newer version: 1.23.0
Show newest version
package tech.jhipster.lite.module.domain.startupcommand;

import java.util.Collection;
import tech.jhipster.lite.shared.collection.domain.JHipsterCollections;

public record JHipsterStartupCommands(Collection commands) {
  public JHipsterStartupCommands(Collection commands) {
    this.commands = JHipsterCollections.immutable(commands);
  }

  @SuppressWarnings("unchecked")
  public Collection get() {
    return (Collection) commands;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy