1 package org.onap.ccsdk.cds.blueprintsprocessor.functions.k8s.definition.template
3 import com.fasterxml.jackson.annotation.JsonProperty
7 @get:JsonProperty("template-name")
8 var templateName: String? = null
10 @get:JsonProperty("description")
11 var description: String? = null
13 override fun toString(): String {
14 return "$templateName:$description"
17 override fun equals(other: Any?): Boolean {
18 if (this === other) return true
19 if (javaClass != other?.javaClass) return false
23 override fun hashCode(): Int {
24 return javaClass.hashCode()