
org.opentripplanner.datastore.file.ZipFileEntryParent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
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