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

org.opentripplanner.datastore.file.ZipFileEntryParent Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.datastore.file;

import java.io.InputStream;
import java.util.zip.ZipEntry;
import org.opentripplanner.datastore.api.FileType;

/**
 * This interface define the role needed by entry play by the zip-file parent.
 * This prevent a cyclic dependency between entry and patent.
 */
interface ZipFileEntryParent {
  InputStream entryStream(ZipEntry entry);
  String path();
  FileType type();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy