1 package org.onap.ccsdk.cds.blueprintsprocessor.functions.k8s.definition.template
3 import com.fasterxml.jackson.annotation.JsonIgnoreProperties
4 import com.fasterxml.jackson.annotation.JsonProperty
6 @JsonIgnoreProperties(ignoreUnknown = true)
9 @get:JsonProperty("template-name")
10 var templateName: String? = null
12 @get:JsonProperty("description")
13 var description: String? = null
15 override fun toString(): String {
16 return "$templateName:$description"
19 override fun equals(other: Any?): Boolean {
20 if (this === other) return true
21 if (javaClass != other?.javaClass) return false
25 override fun hashCode(): Int {
26 return javaClass.hashCode()