Service

@Serializable
data class Service(var hostName: String, var port: Int, var fileName: String, var password: String, var ssl: Boolean)

Service is a data class that holds information about a Kryptokrona Service. The properties are mutable so that they can be changed during runtime.

Author

Marcus Cvjeticanin

Since

0.3.0

Parameters

hostName

The host name of the service.

port

The port of the service.

ssl

Whether the service is using SSL.

Constructors

Link copied to clipboard
constructor(hostName: String, port: Int, fileName: String, password: String, ssl: Boolean)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var port: Int
Link copied to clipboard