Commit e77855c0 authored by Riegel's avatar Riegel
Browse files

Feat: Implement Serializable

parent 2aa639a1
2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 6 additions and 3 deletions
+6 -3
......@@ -9,15 +9,18 @@ import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.io.IOException;
import java.io.InputStream;
import java.io.Serial;
import java.io.Serializable;
import java.util.zip.ZipEntry;
public class CityGmlZipEntry {
public class CityGmlZipEntry implements Serializable {
private static final Logger logger = LogManager.getLogger(CityGmlZipEntry.class);
@Serial
private static final long serialVersionUID = -5732913269959043262L;
private final String fileName;
private CityDoctorModel model;
private transient CityDoctorModel model;
private CityGmlZipArchive parentArchive;
private boolean decompressed;
private long fileSize = -1L;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment