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

tech.jhipster.lite.module.domain.resource.JHipsterFeatureSlugFactory Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
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());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy