tech.jhipster.lite.module.domain.resource.JHipsterFeatureSlugFactory Maven / Gradle / Ivy
package tech.jhipster.lite.module.domain.resource;
import java.util.Optional;
import tech.jhipster.lite.module.domain.JHipsterFeatureSlug;
@FunctionalInterface
public interface JHipsterFeatureSlugFactory {
String get();
default Optional build() {
return JHipsterFeatureSlug.of(get());
}
}