io.ap4k.kubernetes.generator.DefaultKubernetesApplicationGenerator Maven / Gradle / Ivy
package io.ap4k.kubernetes.generator;
import io.ap4k.kubernetes.annotation.KubernetesApplication;
import java.util.Collections;
import java.util.List;
public class DefaultKubernetesApplicationGenerator implements KubernetesApplicationGenerator {
@Override
public List getSupportedAnnotations() {
return Collections.singletonList(KubernetesApplication.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy