mirror of https://github.com/apache/cloudstack.git
quota: fix db bean issue
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
bf57cb6580
commit
1f75299016
|
|
@ -27,5 +27,6 @@
|
|||
|
||||
<bean id="QuotaManager" class="org.apache.cloudstack.quota.QuotaManagerImpl" />
|
||||
<bean id="QuotaConfigurationDao" class="org.apache.cloudstack.quota.dao.QuotaConfigurationDaoImpl" />
|
||||
<bean id="QuotaCreditsDao" class="org.apache.cloudstack.quota.dao.QuotaCreditsDaoImpl"/>
|
||||
|
||||
</beans>
|
||||
|
|
|
|||
|
|
@ -51,6 +51,9 @@ public class QuotaCreditsVO implements InternalIdentity {
|
|||
@Temporal(value = TemporalType.TIMESTAMP)
|
||||
private Date updatedOn = null;
|
||||
|
||||
public QuotaCreditsVO() {
|
||||
}
|
||||
|
||||
public QuotaCreditsVO(long accountId, long domainId, int credit,
|
||||
long updatedBy) {
|
||||
super();
|
||||
|
|
|
|||
Loading…
Reference in New Issue