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

tech.jhipster.lite.project.infrastructure.primary.RestPresets Maven / Gradle / Ivy

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

import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Collection;
import tech.jhipster.lite.project.domain.preset.Preset;

@Schema(name = "Presets", description = "Information on the predefined configurations")
record RestPresets(Collection presets) {
  public static RestPresets from(Collection presets) {
    return new RestPresets(presets.stream().map(RestPreset::from).toList());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy