All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.discovery.v1.endpoint.DeprecatedTopology Maven / Gradle / Ivy

package io.k8s.api.discovery.v1.endpoint;

import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.LinkedHashMap;

@SuppressWarnings("serial")
public class DeprecatedTopology extends LinkedHashMap {
  public DeprecatedTopology kv(String key, String value) {
    put(key, value);
    return this;
  }

  public static DeprecatedTopology deprecatedTopology() {
    return new DeprecatedTopology();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy