tech.jhipster.lite.statistic.domain.ProjectPath Maven / Gradle / Ivy
package tech.jhipster.lite.statistic.domain;
import tech.jhipster.lite.shared.error.domain.Assert;
public record ProjectPath(String path) {
public ProjectPath {
Assert.notBlank("path", path);
}
public String get() {
return path();
}
}