1 package net.sf.jpkgmk.prototype;
2
3
4
5
6
7
8
9
10
11
12
13 public class PrototypeEntryFileVolatile extends PrototypeEntryFile {
14
15
16
17
18
19 public PrototypeEntryFileVolatile(String entryPath)
20 {
21 this(null, null, entryPath, null, null, null, null, null);
22 }
23
24
25
26
27
28
29
30
31
32
33 public PrototypeEntryFileVolatile(Integer part, String fileClass, String entryPath, String entryPathSource, String mode, String owner, String group, PrototypeEntryCommandDefault entryCommandDefault)
34 {
35 super(part, PrototypeEntryType.V, fileClass, entryPath, entryPathSource, mode, owner, group, entryCommandDefault);
36 }
37
38
39 public static class PrototypeEntryFileVolatileParser extends PrototypeEntryFileParser implements PrototypeEntryParser
40 {
41
42 public PrototypeEntryFileVolatileParser()
43 {
44 super();
45 }
46
47 @Override
48 protected PrototypeEntry createEntry(Integer part, String fileClass,
49 String entryPath, String entryPathSource, String mode,
50 String owner, String group, PrototypeEntryCommandDefault entryCommandDefault) {
51
52 return new PrototypeEntryFileVolatile(part, fileClass, entryPath, entryPathSource, mode, owner, group, entryCommandDefault);
53 }
54
55
56 }
57 }