mirror of https://github.com/apache/cloudstack.git
missing files
This commit is contained in:
parent
8d3f135115
commit
599f05d0da
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package com.cloud.vm.dao;
|
||||
|
||||
import com.cloud.utils.db.GenericDao;
|
||||
import com.cloud.vm.NicVO;
|
||||
|
||||
public interface NicDao extends GenericDao<NicVO, Long> {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package com.cloud.vm.dao;
|
||||
|
||||
import javax.ejb.Local;
|
||||
|
||||
import com.cloud.utils.db.GenericDaoBase;
|
||||
import com.cloud.vm.NicVO;
|
||||
|
||||
@Local(value=NicDao.class)
|
||||
public class NicDaoImpl extends GenericDaoBase<NicVO, Long> implements NicDao {
|
||||
protected NicDaoImpl() {
|
||||
super();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue