1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.exorcist.core.zip;
17
18 /***
19 * Utility base class for the Exorcist content state file plugins.
20 */
21 public class ZipBase {
22
23 /*** Name of the <code>content.xml</code> file. */
24 public static final String CONTENT_XML = "content.xml";
25
26 /*** Name of the <code>data</code> subdirectory. */
27 public static final String DATA = "data";
28
29 /*** Name of the content state file accessed by this plugin. */
30 private String zipfile;
31
32 /***
33 * Returns the name of the content state file accessed by this plugin.
34 *
35 * @return name of the content state file
36 */
37 public String getZipfile() {
38 return zipfile;
39 }
40
41 /***
42 * Sets the name of the content state file accessed by this plugin.
43 *
44 * @param zipfile name of the content state file
45 */
46 public void setZipfile(String zipfile) {
47 this.zipfile = zipfile;
48 }
49
50 }