Updated Branches: refs/heads/master 227567cf6 -> 62bb5d884
Fix snapshot details dao Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a3fade86 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a3fade86 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a3fade86 Branch: refs/heads/master Commit: a3fade86b24e85a136a4dbcc19bc5cef330528b0 Parents: 227567c Author: edison su <sudi...@gmail.com> Authored: Tue Dec 3 13:01:51 2013 -0800 Committer: Edison Su <sudi...@gmail.com> Committed: Thu Dec 19 13:35:08 2013 -0800 ---------------------------------------------------------------------- .../cloudstack/core/spring-engine-schema-core-daos-context.xml | 1 + engine/schema/src/com/cloud/storage/dao/SnapshotDetailsVO.java | 4 ++++ 2 files changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a3fade86/engine/schema/resources/META-INF/cloudstack/core/spring-engine-schema-core-daos-context.xml ---------------------------------------------------------------------- diff --git a/engine/schema/resources/META-INF/cloudstack/core/spring-engine-schema-core-daos-context.xml b/engine/schema/resources/META-INF/cloudstack/core/spring-engine-schema-core-daos-context.xml index a3747c0..6ec63bc 100644 --- a/engine/schema/resources/META-INF/cloudstack/core/spring-engine-schema-core-daos-context.xml +++ b/engine/schema/resources/META-INF/cloudstack/core/spring-engine-schema-core-daos-context.xml @@ -251,6 +251,7 @@ <bean id="site2SiteVpnConnectionDaoImpl" class="com.cloud.network.dao.Site2SiteVpnConnectionDaoImpl" /> <bean id="site2SiteVpnGatewayDaoImpl" class="com.cloud.network.dao.Site2SiteVpnGatewayDaoImpl" /> <bean id="snapshotDaoImpl" class="com.cloud.storage.dao.SnapshotDaoImpl" /> + <bean id="snapshotDetailsDaoImpl" class="com.cloud.storage.dao.SnapshotDetailsDaoImpl" /> <bean id="snapshotPolicyDaoImpl" class="com.cloud.storage.dao.SnapshotPolicyDaoImpl" /> <bean id="snapshotScheduleDaoImpl" class="com.cloud.storage.dao.SnapshotScheduleDaoImpl" /> <bean id="sslCertDao" class="com.cloud.network.dao.SslCertDaoImpl" /> http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a3fade86/engine/schema/src/com/cloud/storage/dao/SnapshotDetailsVO.java ---------------------------------------------------------------------- diff --git a/engine/schema/src/com/cloud/storage/dao/SnapshotDetailsVO.java b/engine/schema/src/com/cloud/storage/dao/SnapshotDetailsVO.java index 9bc4b4c..35a7244 100644 --- a/engine/schema/src/com/cloud/storage/dao/SnapshotDetailsVO.java +++ b/engine/schema/src/com/cloud/storage/dao/SnapshotDetailsVO.java @@ -44,6 +44,10 @@ public class SnapshotDetailsVO implements ResourceDetail { @Column(name = "value") String value; + public SnapshotDetailsVO() { + + } + public SnapshotDetailsVO(Long resourceId, String name, String value) { this.resourceId = resourceId; this.name = name;