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

tech.jhipster.lite.module.domain.landscape.JHipsterModuleDependency Maven / Gradle / Ivy

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

import tech.jhipster.lite.module.domain.JHipsterModuleSlug;
import tech.jhipster.lite.module.domain.JHipsterSlug;
import tech.jhipster.lite.shared.error.domain.Assert;

public record JHipsterModuleDependency(JHipsterModuleSlug module) implements JHipsterLandscapeDependency {
  public JHipsterModuleDependency {
    Assert.notNull("module", module);
  }

  @Override
  public JHipsterSlug slug() {
    return module();
  }

  @Override
  public JHipsterLandscapeElementType type() {
    return JHipsterLandscapeElementType.MODULE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy