tech.jhipster.lite.module.domain.landscape.JHipsterLandscapeElement Maven / Gradle / Ivy
package tech.jhipster.lite.module.domain.landscape;
import java.util.Optional;
import java.util.stream.Stream;
import tech.jhipster.lite.module.domain.JHipsterSlug;
public sealed interface JHipsterLandscapeElement permits JHipsterLandscapeFeature, JHipsterLandscapeModule {
JHipsterSlug slug();
Optional dependencies();
Stream allModules();
Stream slugs();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy