com.lightbend.lagom.maven.PortRangeBean.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lagom-maven-plugin Show documentation
Show all versions of lagom-maven-plugin Show documentation
Provides Lagom development environment support to maven.
/*
* Copyright (C) 2016-2017 Lightbend Inc.
*/
package com.lightbend.lagom.maven
import scala.beans.BeanProperty
class PortRangeBean {
@BeanProperty var min: Int = 0xc000 // 49152, IANA minimum ephemeral port
@BeanProperty var max: Int = 0xffff // 65535, IANA maximum ephemeral port
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy