Thanks!
On Fri, Jul 5, 2013 at 7:46 PM, Soheil Eizadi wrote:
> Hi Mike,
> You typically have a public interface for your DAO:
> public interface InfobloxDao extends GenericDao{
>
> }
>
> Then an implementation:
> public class InfobloxDaoImpl extends GenericDaoBase
> implements Infoblo
Hi Mike,
You typically have a public interface for your DAO:
public interface InfobloxDao extends GenericDao{
}
Then an implementation:
public class InfobloxDaoImpl extends GenericDaoBase
implements InfobloxDao {
...
}
This is a good link for the details of Database Access:
https://cwik