net.nemerosa.ontrack.model.support.Connector.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.support
data class Connector(
val type: String,
val name: String
) : Comparable {
override fun compareTo(other: Connector): Int =
compareValuesBy(this, other, Connector::type, Connector::name)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy