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

com.enofex.naikan.model.Integrations Maven / Gradle / Ivy

Go to download

The Naikan Model Module for Naikan the software inventory management tool for dev teams driven by our CI/CD pipeline.

The newest version!
package com.enofex.naikan.model;

import java.util.List;

public final class Integrations extends AbstractContainer {

  private static final Integrations NO_INTEGRATIONS = new Integrations(List.of());

  public Integrations(List integrations) {
    super(integrations);
  }

  public static Integrations empty() {
    return NO_INTEGRATIONS;
  }

  public static Integrations of(Integration... integrations) {
    return new Integrations(List.of(integrations));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy