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

skinny.controller.feature.EnvFeature.scala Maven / Gradle / Ivy

The newest version!
package skinny.controller.feature

import skinny.SkinnyEnv
import org.scalatra.ScalatraBase

/**
 * SkinnyEnv support.
 */
trait EnvFeature extends ScalatraBase {

  /**
   * Env string value from "skinny.env" or "org.scalatra.environment".
   *
   * @return env string such as "production"
   */
  def skinnyEnv: Option[String] = SkinnyEnv.get().orElse(Option(environment))

  /**
   * Predicates current env is "development" or "dev".
   *
   * @return true/false
   */
  def isDevelopment(): Boolean = SkinnyEnv.isDevelopment(skinnyEnv)

  /**
   * Predicates current env is "test".
   *
   * @return true/false
   */
  def isTest(): Boolean = SkinnyEnv.isTest(skinnyEnv)

  /**
   * Predicates current env is "staging" or "qa".
   *
   * @return true/false
   */
  def isStaging(): Boolean = SkinnyEnv.isStaging(skinnyEnv)

  /**
   * Predicates current env is "production" or "prod".
   *
   * @return true/false
   */
  def isProduction(): Boolean = SkinnyEnv.isProduction(skinnyEnv)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy