mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Fix snapshot details dao
This commit is contained in:
parent
227567cf6c
commit
a3fade86b2
@ -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" />
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user