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

tech.jhipster.lite.statistic.domain.ModuleProperties Maven / Gradle / Ivy

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

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

public record ModuleProperties(Map properties) {
  public ModuleProperties(Map properties) {
    this.properties = JHipsterCollections.immutable(properties);
  }

  public Map get() {
    return properties();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy