1 /* 2 * SPDX-FileCopyrightText: Copyright (c) 2012-2025 Yegor Bugayenko 3 * SPDX-License-Identifier: MIT 4 */ 5 package com.jcabi.manifests; 6 7 import java.io.IOException; 8 import java.io.InputStream; 9 import java.util.Collection; 10 11 /** 12 * Manifests. 13 * 14 * @since 1.0 15 */ 16 public interface Mfs { 17 18 /** 19 * Find and fetch them all. 20 * @return Iterator of found resources 21 * @throws IOException If fails 22 */ 23 Collection<InputStream> fetch() throws IOException; 24 25 }