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

dev.galasa.kubernetes.spi.IKubernetesManagerSpi Maven / Gradle / Ivy

There is a newer version: 0.34.0
Show newest version
/*
 * Licensed Materials - Property of IBM
 * 
 * (c) Copyright IBM Corp. 2020.
 */
package dev.galasa.kubernetes.spi;

import javax.validation.constraints.NotNull;

import dev.galasa.kubernetes.IKubernetesNamespace;

/**
 * Provides the SPI for the Kubernetes Manager for Manager to Manager communication.
 * Should not be used by Test code
 * 
 * @author Michael Baylis
 *
 */
public interface IKubernetesManagerSpi {

    /**
     * Retrieve the Kubernetes Namespace that has a specific tag.
     * 
     * @param namespaceTag The tag to be used
     * @return {@link dev.galasa.kubernetes.IKubernetesNamespace} if the tag is found, or null if not
     */
    IKubernetesNamespace getNamespaceByTag(@NotNull String namespaceTag);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy