UFServiceConfiguration

data class UFServiceConfiguration(    val tenant: String,     val controllerId: String,     val retryDelay: Long,     val url: String,     val targetToken: String,     val gatewayToken: String,     isApiMode: Boolean,     isEnable: Boolean,     val isUpdateFactoryServe: Boolean,     val targetAttributes: Map<String, String>) : Serializable

This class represent the com.kynetics.uf.android.UpdateFactoryService's configuration

Constructors

Link copied to clipboard
fun UFServiceConfiguration(    tenant: String,     controllerId: String,     retryDelay: Long,     url: String,     targetToken: String,     gatewayToken: String,     isApiMode: Boolean,     isEnable: Boolean,     isUpdateFactoryServe: Boolean,     targetAttributes: Map<String, String>)

Types

Link copied to clipboard
class Builder

UFServiceConfiguration's builder class

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
fun getArgs(): Map<String, String>

get target's tags

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
fun isApiMode(): Boolean
Link copied to clipboard
fun isEnable(): Boolean
Link copied to clipboard
fun toJson(): String

Json serialization

Properties

Link copied to clipboard
val controllerId: String
Link copied to clipboard
val gatewayToken: String
Link copied to clipboard
val isUpdateFactoryServe: Boolean
Link copied to clipboard
val retryDelay: Long
Link copied to clipboard
val targetAttributes: Map<String, String>
Link copied to clipboard
val targetToken: String
Link copied to clipboard
val tenant: String
Link copied to clipboard
val url: String