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

io.atlassian.aws.rds.LicenceModel.scala Maven / Gradle / Ivy

package io.atlassian.aws
package rds

sealed case class LicenceModel(name: String) {
  override def toString = name
}

object LicenceModel {
  val included = LicenceModel("included")
  val byo = LicenceModel("bring-your-own-license")
  val gpl = LicenceModel("general-public-license")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy