Interface BuildRegistry

  • All Known Implementing Classes:
    InMemoryBuildRegistry

    public interface BuildRegistry
    Represents the BuildRegistry where all the Binaries built by the system will be registered
    • Method Detail

      • registerBinary

        void registerBinary​(Binary binary)
        Register a new binary
        Parameters:
        binary - a binary to be registered
        See Also:
        Binary
      • getAllBinaries

        List<Binary> getAllBinaries()
        Returns all the registered binaries
        Returns:
        a List with all the registered binaries
        See Also:
        Binary