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

tech.jhipster.lite.project.infrastructure.secondary.PersistedPreset Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package tech.jhipster.lite.project.infrastructure.secondary;

import java.util.Collection;
import tech.jhipster.lite.project.domain.ModulesSlugs;
import tech.jhipster.lite.project.domain.preset.Preset;
import tech.jhipster.lite.project.domain.preset.PresetName;

record PersistedPreset(String name, Collection modules) {
  public Preset toDomain() {
    return new Preset(PresetName.from(name), ModulesSlugs.from(modules));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy