package com.dexels.kubernetes.tree; import java.util.HashMap; import java.util.Map; public class DeploymentNode { private final Map statefulSets = new HashMap<>(); private final Map replicaSets = new HashMap<>(); public Map statefulSet() { return this.statefulSets; } public Map replicaSet() { return this.replicaSets; } }