tech.jhipster.lite.module.domain.buildproperties.PropertyKey Maven / Gradle / Ivy
package tech.jhipster.lite.module.domain.buildproperties;
import tech.jhipster.lite.shared.error.domain.Assert;
public record PropertyKey(String key) {
public PropertyKey {
Assert.notBlank("key", key);
}
public String get() {
return key();
}
}