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

tech.jhipster.lite.module.domain.javaproperties.SpringProfile Maven / Gradle / Ivy

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

import org.apache.commons.lang3.StringUtils;

public record SpringProfile(String profile) {
  public static final SpringProfile DEFAULT = new SpringProfile(null);
  public static final SpringProfile LOCAL = new SpringProfile("local");
  public static final SpringProfile TEST = new SpringProfile("test");

  public String get() {
    return profile();
  }

  public boolean isDefault() {
    return StringUtils.isBlank(profile);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy