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

tech.jhipster.lite.module.domain.javabuild.DependencySlug Maven / Gradle / Ivy

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

import java.util.Optional;
import org.apache.commons.lang3.StringUtils;
import tech.jhipster.lite.shared.error.domain.Assert;

public record DependencySlug(String slug) {
  public DependencySlug {
    Assert.notBlank("slug", slug);
  }

  public static Optional of(String dependencySlug) {
    return Optional.ofNullable(dependencySlug).filter(StringUtils::isNotBlank).map(DependencySlug::new);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy