improved javadoc documentation
This commit is contained in:
parent
7dec0a747c
commit
21e7a6f4b8
6 changed files with 43 additions and 0 deletions
|
|
@ -12,8 +12,14 @@ import scala.reflect.BeanProperty
|
|||
// ============================================
|
||||
// Java version of the configuration API
|
||||
|
||||
/**
|
||||
* @author <a href="http://jonasboner.com">Jonas Bonér</a>
|
||||
*/
|
||||
sealed class ConfigurationException(msg: String) extends RuntimeException(msg)
|
||||
|
||||
/**
|
||||
* @author <a href="http://jonasboner.com">Jonas Bonér</a>
|
||||
*/
|
||||
sealed abstract class Configuration
|
||||
|
||||
class RestartStrategy(@BeanProperty val scheme: FailOverScheme, @BeanProperty val maxNrOfRetries: Int, @BeanProperty val withinTimeRange: Int) extends Configuration {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue