| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 94e8090 commit e6cd47d
24 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -154,7 +154,7 @@ public String reserveVirtualMachine(VMEntityVO vmEntityVO, String plannerToUse, | |||
| 154 | 154 | ||
| 155 | 155 | } | |
| 156 | 156 | ||
| 157 | - DeploymentPlanner planner = ComponentContext.getCompanent(plannerToUse); | ||
| 157 | + DeploymentPlanner planner = ComponentContext.getComponent(plannerToUse); | ||
| 158 | 158 | DeployDestination dest = null; | |
| 159 | 159 | ||
| 160 | 160 | if (planner.canHandle(vmProfile, plan, exclude)) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,7 +23,7 @@ | |||
| 23 | 23 | import java.util.Map; | |
| 24 | 24 | ||
| 25 | 25 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State.Event; | |
| 26 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.ClusterVO; | ||
| 26 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineClusterVO; | ||
| 27 | 27 | import com.cloud.hypervisor.Hypervisor.HypervisorType; | |
| 28 | 28 | import com.cloud.org.Cluster.ClusterType; | |
| 29 | 29 | import com.cloud.org.Grouping.AllocationState; | |
@@ -36,7 +36,7 @@ public class ClusterEntityImpl implements ClusterEntity { | |||
| 36 | 36 | ||
| 37 | 37 | private DataCenterResourceManager manager; | |
| 38 | 38 | ||
| 39 | - private ClusterVO clusterVO; | ||
| 39 | + private EngineClusterVO clusterVO; | ||
| 40 | 40 | ||
| 41 | 41 | ||
| 42 | 42 | public ClusterEntityImpl(String clusterId, DataCenterResourceManager manager) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,33 +18,33 @@ | |||
| 18 | 18 | ||
| 19 | 19 | ||
| 20 | 20 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State.Event; | |
| 21 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.ClusterVO; | ||
| 22 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.DataCenterVO; | ||
| 23 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.HostPodVO; | ||
| 24 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.HostVO; | ||
| 21 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineClusterVO; | ||
| 22 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineDataCenterVO; | ||
| 23 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO; | ||
| 24 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostVO; | ||
| 25 | 25 | ||
| 26 | 26 | import com.cloud.utils.fsm.NoTransitionException; | |
| 27 | 27 | ||
| 28 | 28 | ||
| 29 | 29 | ||
| 30 | 30 | public interface DataCenterResourceManager { | |
| 31 | 31 | ||
| 32 | - DataCenterVO loadDataCenter(String dataCenterId); | ||
| 32 | + EngineDataCenterVO loadDataCenter(String dataCenterId); | ||
| 33 | 33 | ||
| 34 | - void saveDataCenter(DataCenterVO dc); | ||
| 34 | + void saveDataCenter(EngineDataCenterVO dc); | ||
| 35 | 35 | ||
| 36 | - void savePod(HostPodVO dc); | ||
| 36 | + void savePod(EngineHostPodVO dc); | ||
| 37 | 37 | ||
| 38 | - void saveCluster(ClusterVO cluster); | ||
| 38 | + void saveCluster(EngineClusterVO cluster); | ||
| 39 | 39 | ||
| 40 | 40 | boolean changeState(DataCenterResourceEntity entity, Event event) throws NoTransitionException; | |
| 41 | 41 | ||
| 42 | - HostPodVO loadPod(String uuid); | ||
| 42 | + EngineHostPodVO loadPod(String uuid); | ||
| 43 | 43 | ||
| 44 | - ClusterVO loadCluster(String uuid); | ||
| 44 | + EngineClusterVO loadCluster(String uuid); | ||
| 45 | 45 | ||
| 46 | - HostVO loadHost(String uuid); | ||
| 46 | + EngineHostVO loadHost(String uuid); | ||
| 47 | 47 | ||
| 48 | - void saveHost(HostVO hostVO); | ||
| 48 | + void saveHost(EngineHostVO hostVO); | ||
| 49 | 49 | ||
| 50 | 50 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,14 +20,14 @@ | |||
| 20 | 20 | ||
| 21 | 21 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State; | |
| 22 | 22 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State.Event; | |
| 23 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.ClusterVO; | ||
| 24 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.DataCenterVO; | ||
| 25 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.HostPodVO; | ||
| 26 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.HostVO; | ||
| 27 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.ClusterDao; | ||
| 28 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.DataCenterDao; | ||
| 29 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.HostDao; | ||
| 30 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.HostPodDao; | ||
| 23 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineClusterVO; | ||
| 24 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineDataCenterVO; | ||
| 25 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO; | ||
| 26 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostVO; | ||
| 27 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.EngineClusterDao; | ||
| 28 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.EngineDataCenterDao; | ||
| 29 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.EngineHostDao; | ||
| 30 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.dao.EngineHostPodDao; | ||
| 31 | 31 | import org.springframework.stereotype.Component; | |
| 32 | 32 | ||
| 33 | 33 | ||
@@ -39,31 +39,31 @@ | |||
| 39 | 39 | public class DataCenterResourceManagerImpl implements DataCenterResourceManager { | |
| 40 | 40 | ||
| 41 | 41 | @Inject | |
| 42 | - DataCenterDao _dataCenterDao; | ||
| 42 | + EngineDataCenterDao _dataCenterDao; | ||
| 43 | 43 | ||
| 44 | 44 | @Inject | |
| 45 | - HostPodDao _podDao; | ||
| 45 | + EngineHostPodDao _podDao; | ||
| 46 | 46 | ||
| 47 | 47 | @Inject | |
| 48 | - ClusterDao _clusterDao; | ||
| 48 | + EngineClusterDao _clusterDao; | ||
| 49 | 49 | ||
| 50 | 50 | @Inject | |
| 51 | - HostDao _hostDao; | ||
| 51 | + EngineHostDao _hostDao; | ||
| 52 | 52 | ||
| 53 | 53 | ||
| 54 | 54 | protected StateMachine2<State, Event, DataCenterResourceEntity> _stateMachine = DataCenterResourceEntity.State.s_fsm; | |
| 55 | 55 | ||
| 56 | 56 | @Override | |
| 57 | - public DataCenterVO loadDataCenter(String dataCenterId) { | ||
| 58 | - DataCenterVO dataCenterVO = _dataCenterDao.findByUuid(dataCenterId); | ||
| 57 | + public EngineDataCenterVO loadDataCenter(String dataCenterId) { | ||
| 58 | + EngineDataCenterVO dataCenterVO = _dataCenterDao.findByUuid(dataCenterId); | ||
| 59 | 59 | if(dataCenterVO == null){ | |
| 60 | 60 | throw new InvalidParameterValueException("Zone does not exist"); | |
| 61 | 61 | } | |
| 62 | 62 | return dataCenterVO; | |
| 63 | 63 | } | |
| 64 | 64 | ||
| 65 | 65 | @Override | |
| 66 | - public void saveDataCenter(DataCenterVO dc) { | ||
| 66 | + public void saveDataCenter(EngineDataCenterVO dc) { | ||
| 67 | 67 | _dataCenterDao.persist(dc); | |
| 68 | 68 | ||
| 69 | 69 | } | |
@@ -85,44 +85,44 @@ public boolean changeState(DataCenterResourceEntity entity, Event event) throws | |||
| 85 | 85 | } | |
| 86 | 86 | ||
| 87 | 87 | @Override | |
| 88 | - public HostPodVO loadPod(String uuid) { | ||
| 89 | - HostPodVO pod = _podDao.findByUuid(uuid); | ||
| 88 | + public EngineHostPodVO loadPod(String uuid) { | ||
| 89 | + EngineHostPodVO pod = _podDao.findByUuid(uuid); | ||
| 90 | 90 | if(pod == null){ | |
| 91 | 91 | throw new InvalidParameterValueException("Pod does not exist"); | |
| 92 | 92 | } | |
| 93 | 93 | return pod; | |
| 94 | 94 | } | |
| 95 | 95 | ||
| 96 | 96 | @Override | |
| 97 | - public ClusterVO loadCluster(String uuid) { | ||
| 98 | - ClusterVO cluster = _clusterDao.findByUuid(uuid); | ||
| 97 | + public EngineClusterVO loadCluster(String uuid) { | ||
| 98 | + EngineClusterVO cluster = _clusterDao.findByUuid(uuid); | ||
| 99 | 99 | if(cluster == null){ | |
| 100 | 100 | throw new InvalidParameterValueException("Pod does not exist"); | |
| 101 | 101 | } | |
| 102 | 102 | return cluster; | |
| 103 | 103 | } | |
| 104 | 104 | ||
| 105 | 105 | @Override | |
| 106 | - public void savePod(HostPodVO pod) { | ||
| 106 | + public void savePod(EngineHostPodVO pod) { | ||
| 107 | 107 | _podDao.persist(pod); | |
| 108 | 108 | } | |
| 109 | 109 | ||
| 110 | 110 | @Override | |
| 111 | - public void saveCluster(ClusterVO cluster) { | ||
| 111 | + public void saveCluster(EngineClusterVO cluster) { | ||
| 112 | 112 | _clusterDao.persist(cluster); | |
| 113 | 113 | } | |
| 114 | 114 | ||
| 115 | 115 | @Override | |
| 116 | - public HostVO loadHost(String uuid) { | ||
| 117 | - HostVO host = _hostDao.findByUuid(uuid); | ||
| 116 | + public EngineHostVO loadHost(String uuid) { | ||
| 117 | + EngineHostVO host = _hostDao.findByUuid(uuid); | ||
| 118 | 118 | if(host == null){ | |
| 119 | 119 | throw new InvalidParameterValueException("Host does not exist"); | |
| 120 | 120 | } | |
| 121 | 121 | return host; | |
| 122 | 122 | } | |
| 123 | 123 | ||
| 124 | 124 | @Override | |
| 125 | - public void saveHost(HostVO hostVO) { | ||
| 125 | + public void saveHost(EngineHostVO hostVO) { | ||
| 126 | 126 | _hostDao.persist(hostVO); | |
| 127 | 127 | } | |
| 128 | 128 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,7 +22,7 @@ | |||
| 22 | 22 | import java.util.Map; | |
| 23 | 23 | ||
| 24 | 24 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State.Event; | |
| 25 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.HostVO; | ||
| 25 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostVO; | ||
| 26 | 26 | ||
| 27 | 27 | import com.cloud.hypervisor.Hypervisor.HypervisorType; | |
| 28 | 28 | import com.cloud.utils.fsm.NoTransitionException; | |
@@ -31,7 +31,7 @@ public class HostEntityImpl implements HostEntity { | |||
| 31 | 31 | ||
| 32 | 32 | private DataCenterResourceManager manager; | |
| 33 | 33 | ||
| 34 | - private HostVO hostVO; | ||
| 34 | + private EngineHostVO hostVO; | ||
| 35 | 35 | ||
| 36 | 36 | public HostEntityImpl(String uuid, DataCenterResourceManager manager) { | |
| 37 | 37 | this.manager = manager; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,7 +24,7 @@ | |||
| 24 | 24 | import java.util.Map; | |
| 25 | 25 | ||
| 26 | 26 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State.Event; | |
| 27 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.HostPodVO; | ||
| 27 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineHostPodVO; | ||
| 28 | 28 | ||
| 29 | 29 | import com.cloud.org.Cluster; | |
| 30 | 30 | import com.cloud.org.Grouping.AllocationState; | |
@@ -35,7 +35,7 @@ public class PodEntityImpl implements PodEntity { | |||
| 35 | 35 | ||
| 36 | 36 | private DataCenterResourceManager manager; | |
| 37 | 37 | ||
| 38 | - private HostPodVO podVO; | ||
| 38 | + private EngineHostPodVO podVO; | ||
| 39 | 39 | ||
| 40 | 40 | public PodEntityImpl(String uuid, DataCenterResourceManager manager) { | |
| 41 | 41 | this.manager = manager; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,7 +26,7 @@ | |||
| 26 | 26 | import javax.ws.rs.GET; | |
| 27 | 27 | import javax.ws.rs.Path; | |
| 28 | 28 | import org.apache.cloudstack.engine.datacenter.entity.api.DataCenterResourceEntity.State.Event; | |
| 29 | - import org.apache.cloudstack.engine.datacenter.entity.api.db.DataCenterVO; | ||
| 29 | + import org.apache.cloudstack.engine.datacenter.entity.api.db.EngineDataCenterVO; | ||
| 30 | 30 | import com.cloud.utils.fsm.FiniteStateObject; | |
| 31 | 31 | import com.cloud.utils.fsm.NoTransitionException; | |
| 32 | 32 | ||
@@ -37,7 +37,7 @@ public class ZoneEntityImpl implements ZoneEntity, FiniteStateObject<DataCenterR | |||
| 37 | 37 | ||
| 38 | 38 | private DataCenterResourceManager manager; | |
| 39 | 39 | ||
| 40 | - private DataCenterVO dataCenterVO; | ||
| 40 | + private EngineDataCenterVO dataCenterVO; | ||
| 41 | 41 | ||
| 42 | 42 | ||
| 43 | 43 | public ZoneEntityImpl(String dataCenterId, DataCenterResourceManager manager) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -40,7 +40,7 @@ | |||
| 40 | 40 | ||
| 41 | 41 | @Entity | |
| 42 | 42 | @Table(name="cluster") | |
| 43 | - public class ClusterVO implements Cluster, Identity { | ||
| 43 | + public class EngineClusterVO implements Cluster, Identity { | ||
| 44 | 44 | ||
| 45 | 45 | @Id | |
| 46 | 46 | @GeneratedValue(strategy = GenerationType.IDENTITY) | |
@@ -99,27 +99,27 @@ public class ClusterVO implements Cluster, Identity { | |||
| 99 | 99 | */ | |
| 100 | 100 | @Enumerated(value=EnumType.STRING) | |
| 101 | 101 | @StateMachine(state=State.class, event=Event.class) | |
| 102 | - @Column(name="state", updatable=true, nullable=false, length=32) | ||
| 103 | - protected State state = null; | ||
| 102 | + @Column(name="engine_state", updatable=true, nullable=false, length=32) | ||
| 103 | + protected State engineState = null; | ||
| 104 | 104 | ||
| 105 | 105 | ||
| 106 | - public ClusterVO() { | ||
| 106 | + public EngineClusterVO() { | ||
| 107 | 107 | clusterType = Cluster.ClusterType.CloudManaged; | |
| 108 | 108 | allocationState = Grouping.AllocationState.Enabled; | |
| 109 | 109 | ||
| 110 | 110 | this.uuid = UUID.randomUUID().toString(); | |
| 111 | - this.state = State.Disabled; | ||
| 111 | + this.engineState = State.Disabled; | ||
| 112 | 112 | } | |
| 113 | 113 | ||
| 114 | - public ClusterVO(long dataCenterId, long podId, String name) { | ||
| 114 | + public EngineClusterVO(long dataCenterId, long podId, String name) { | ||
| 115 | 115 | this.dataCenterId = dataCenterId; | |
| 116 | 116 | this.podId = podId; | |
| 117 | 117 | this.name = name; | |
| 118 | 118 | this.clusterType = Cluster.ClusterType.CloudManaged; | |
| 119 | 119 | this.allocationState = Grouping.AllocationState.Enabled; | |
| 120 | 120 | this.managedState = ManagedState.Managed; | |
| 121 | 121 | this.uuid = UUID.randomUUID().toString(); | |
| 122 | - this.state = State.Disabled; | ||
| 122 | + this.engineState = State.Disabled; | ||
| 123 | 123 | } | |
| 124 | 124 | ||
| 125 | 125 | @Override | |
@@ -169,7 +169,7 @@ public void setManagedState(ManagedState managedState) { | |||
| 169 | 169 | this.managedState = managedState; | |
| 170 | 170 | } | |
| 171 | 171 | ||
| 172 | - public ClusterVO(long clusterId) { | ||
| 172 | + public EngineClusterVO(long clusterId) { | ||
| 173 | 173 | this.id = clusterId; | |
| 174 | 174 | } | |
| 175 | 175 | ||
@@ -180,10 +180,10 @@ public int hashCode() { | |||
| 180 | 180 | ||
| 181 | 181 | @Override | |
| 182 | 182 | public boolean equals(Object obj) { | |
| 183 | - if (!(obj instanceof ClusterVO)) { | ||
| 183 | + if (!(obj instanceof EngineClusterVO)) { | ||
| 184 | 184 | return false; | |
| 185 | 185 | } | |
| 186 | - ClusterVO that = (ClusterVO)obj; | ||
| 186 | + EngineClusterVO that = (EngineClusterVO)obj; | ||
| 187 | 187 | return this.id == that.id; | |
| 188 | 188 | } | |
| 189 | 189 | ||
@@ -238,6 +238,6 @@ public Date getLastUpdated() { | |||
| 238 | 238 | } | |
| 239 | 239 | ||
| 240 | 240 | public State getState() { | |
| 241 | - return state; | ||
| 241 | + return engineState; | ||
| 242 | 242 | } | |
| 243 | 243 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -42,7 +42,7 @@ | |||
| 42 | 42 | ||
| 43 | 43 | @Entity | |
| 44 | 44 | @Table(name="data_center") | |
| 45 | - public class DataCenterVO implements DataCenter, Identity { | ||
| 45 | + public class EngineDataCenterVO implements DataCenter, Identity { | ||
| 46 | 46 | ||
| 47 | 47 | @Id | |
| 48 | 48 | @GeneratedValue(strategy=GenerationType.IDENTITY) | |
@@ -151,8 +151,8 @@ public class DataCenterVO implements DataCenter, Identity { | |||
| 151 | 151 | */ | |
| 152 | 152 | @Enumerated(value=EnumType.STRING) | |
| 153 | 153 | @StateMachine(state=State.class, event=Event.class) | |
| 154 | - @Column(name="state", updatable=true, nullable=false, length=32) | ||
| 155 | - protected State state = null; | ||
| 154 | + @Column(name="engine_state", updatable=true, nullable=false, length=32) | ||
| 155 | + protected State engineState = null; | ||
| 156 | 156 | ||
| 157 | 157 | ||
| 158 | 158 | @Override | |
@@ -200,14 +200,14 @@ public void setFirewallProvider(String firewallProvider) { | |||
| 200 | 200 | this.firewallProvider = firewallProvider; | |
| 201 | 201 | } | |
| 202 | 202 | ||
| 203 | - public DataCenterVO(long id, String name, String description, String dns1, String dns2, String dns3, String dns4, String guestCidr, String domain, Long domainId, NetworkType zoneType, String zoneToken, String domainSuffix) { | ||
| 203 | + public EngineDataCenterVO(long id, String name, String description, String dns1, String dns2, String dns3, String dns4, String guestCidr, String domain, Long domainId, NetworkType zoneType, String zoneToken, String domainSuffix) { | ||
| 204 | 204 | this(name, description, dns1, dns2, dns3, dns4, guestCidr, domain, domainId, zoneType, zoneToken, domainSuffix, false, false); | |
| 205 | 205 | this.id = id; | |
| 206 | 206 | this.allocationState = Grouping.AllocationState.Enabled; | |
| 207 | 207 | this.uuid = UUID.randomUUID().toString(); | |
| 208 | 208 | } | |
| 209 | 209 | ||
| 210 | - public DataCenterVO(String name, String description, String dns1, String dns2, String dns3, String dns4, String guestCidr, String domain, Long domainId, NetworkType zoneType, String zoneToken, String domainSuffix, boolean securityGroupEnabled, boolean localStorageEnabled) { | ||
| 210 | + public EngineDataCenterVO(String name, String description, String dns1, String dns2, String dns3, String dns4, String guestCidr, String domain, Long domainId, NetworkType zoneType, String zoneToken, String domainSuffix, boolean securityGroupEnabled, boolean localStorageEnabled) { | ||
| 211 | 211 | this.name = name; | |
| 212 | 212 | this.description = description; | |
| 213 | 213 | this.dns1 = dns1; | |
@@ -240,7 +240,7 @@ public DataCenterVO(String name, String description, String dns1, String dns2, S | |||
| 240 | 240 | this.zoneToken = zoneToken; | |
| 241 | 241 | this.domain = domainSuffix; | |
| 242 | 242 | this.uuid = UUID.randomUUID().toString(); | |
| 243 | - this.state = State.Disabled; | ||
| 243 | + this.engineState = State.Disabled; | ||
| 244 | 244 | } | |
| 245 | 245 | ||
| 246 | 246 | @Override | |
@@ -310,7 +310,7 @@ public String getInternalDns2() { | |||
| 310 | 310 | return internalDns2; | |
| 311 | 311 | } | |
| 312 | 312 | ||
| 313 | - protected DataCenterVO() { | ||
| 313 | + protected EngineDataCenterVO() { | ||
| 314 | 314 | } | |
| 315 | 315 | ||
| 316 | 316 | @Override | |
@@ -421,10 +421,10 @@ public int hashCode() { | |||
| 421 | 421 | ||
| 422 | 422 | @Override | |
| 423 | 423 | public boolean equals(Object obj) { | |
| 424 | - if (!(obj instanceof DataCenterVO)) { | ||
| 424 | + if (!(obj instanceof EngineDataCenterVO)) { | ||
| 425 | 425 | return false; | |
| 426 | 426 | } | |
| 427 | - DataCenterVO that = (DataCenterVO)obj; | ||
| 427 | + EngineDataCenterVO that = (EngineDataCenterVO)obj; | ||
| 428 | 428 | return this.id == that.id; | |
| 429 | 429 | } | |
| 430 | 430 | ||
@@ -475,6 +475,6 @@ public Date getLastUpdated() { | |||
| 475 | 475 | } | |
| 476 | 476 | ||
| 477 | 477 | public State getState() { | |
| 478 | - return state; | ||
| 478 | + return engineState; | ||
| 479 | 479 | } | |
| 480 | 480 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments