1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.persistence.model.live;
18
19 import org.gwe.persistence.model.DaemonConfigDesc;
20 import org.gwe.persistence.model.OrderExecutionProfileInfo;
21 import org.gwe.persistence.model.OrderInfo;
22
23
24
25
26
27 public class OrderLive {
28
29 private OrderInfo info;
30 private DaemonConfigDesc config;
31
32 public OrderLive(DaemonConfigDesc config, OrderInfo info) {
33 this.info = info;
34 this.config = config;
35 info.getDescriptor().initExecution(this);
36 }
37
38 public OrderInfo getInfo() {
39 return info;
40 }
41
42 public DaemonConfigDesc getConfig() {
43 return config;
44 }
45
46 public String getUserHomePath() {
47 return config.getHeadResource().getInstallRootPath();
48 }
49
50 public void unload() {
51 info.getDescriptor().finalizeExecution(this);
52 }
53
54 public boolean canCleanUp() {
55 OrderExecutionProfileInfo execProfile = info.getExecutionProfile();
56 return execProfile.isCleanUpModeAlways() || (execProfile.isCleanUpModeOnSuccess());
57 }
58 }