Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-03 Thread david
Hello Igor, thanks for the reply. I have already tried the wiki/forum: 20-30 
views but no replies. Thanks, David.


Igor Vaynberg wrote ..
> the book has a forum that may be a better place to ask this.
>
> www.wicketinaction.com/support
>
> -igor
>
> On Tue, Jun 2, 2009 at 6:44 AM, David Brown
>  wrote:
> > Hello James, thanks for the reply. Please find included below the Test.java 
> > body
> as found in the .domain directory:
> >
> > public class Test implements DomainObject {
> >        public Long getId() {
> >                return null;
> >        }
> > }
> >
> >
> >
> > - Original Message -
> > From: "James Carman" 
> > To: users@wicket.apache.org
> > Sent: Monday, June 1, 2009 9:39:32 PM GMT -06:00 US/Canada Central
> > Subject: Re: WIA ch 13 DAO creation (just a lot of cheese?)
> >
> > Does "Test" extend DomainObject?
> >
> > On Mon, Jun 1, 2009 at 10:32 PM, David Brown
> >  wrote:
> >> Hello wicket bunch, I have a curious situation using the WIA ch13 
> >> DAO/hibernate
> code. When I try to introduce a third class aptly named: Test in the domain 
> and
> a DAO interface named: TestDao and then a class: TestDaoImpl I get the 
> unresolvable
> Error:
> >>
> >>
> >>
> >> ***
> >> Bound mismatch: The type Test is not a valid substitute for the bounded 
> >> parameter
>  of the type AbstractHibernateDaoImpl
> >>
> >>
> >>
> >> Yet, this is perfectly valid for the existing class: Cheese and 
> >> CheeseDaoImpl.
> >>
> >>
> >> Any ideas?
> >>
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-02 Thread Igor Vaynberg
the book has a forum that may be a better place to ask this.

www.wicketinaction.com/support

-igor

On Tue, Jun 2, 2009 at 6:44 AM, David Brown
 wrote:
> Hello James, thanks for the reply. Please find included below the Test.java 
> body as found in the .domain directory:
>
> public class Test implements DomainObject {
>        public Long getId() {
>                return null;
>        }
> }
>
>
>
> - Original Message -
> From: "James Carman" 
> To: users@wicket.apache.org
> Sent: Monday, June 1, 2009 9:39:32 PM GMT -06:00 US/Canada Central
> Subject: Re: WIA ch 13 DAO creation (just a lot of cheese?)
>
> Does "Test" extend DomainObject?
>
> On Mon, Jun 1, 2009 at 10:32 PM, David Brown
>  wrote:
>> Hello wicket bunch, I have a curious situation using the WIA ch13 
>> DAO/hibernate code. When I try to introduce a third class aptly named: Test 
>> in the domain and a DAO interface named: TestDao and then a class: 
>> TestDaoImpl I get the unresolvable Error:
>>
>>
>>
>> ***
>> Bound mismatch: The type Test is not a valid substitute for the bounded 
>> parameter  of the type AbstractHibernateDaoImpl
>>
>>
>>
>> Yet, this is perfectly valid for the existing class: Cheese and 
>> CheeseDaoImpl.
>>
>>
>> Any ideas?
>>
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-02 Thread David Brown
Hello James, thanks for the reply. Please find included below the Test.java 
body as found in the .domain directory:

public class Test implements DomainObject {
public Long getId() {
return null;
}
}



- Original Message -
From: "James Carman" 
To: users@wicket.apache.org
Sent: Monday, June 1, 2009 9:39:32 PM GMT -06:00 US/Canada Central
Subject: Re: WIA ch 13 DAO creation (just a lot of cheese?)

Does "Test" extend DomainObject?

On Mon, Jun 1, 2009 at 10:32 PM, David Brown
 wrote:
> Hello wicket bunch, I have a curious situation using the WIA ch13 
> DAO/hibernate code. When I try to introduce a third class aptly named: Test 
> in the domain and a DAO interface named: TestDao and then a class: 
> TestDaoImpl I get the unresolvable Error:
>
>
>
> ***
> Bound mismatch: The type Test is not a valid substitute for the bounded 
> parameter  of the type AbstractHibernateDaoImpl
>
>
>
> Yet, this is perfectly valid for the existing class: Cheese and CheeseDaoImpl.
>
>
> Any ideas?
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-01 Thread James Carman
Does "Test" extend DomainObject?

On Mon, Jun 1, 2009 at 10:32 PM, David Brown
 wrote:
> Hello wicket bunch, I have a curious situation using the WIA ch13 
> DAO/hibernate code. When I try to introduce a third class aptly named: Test 
> in the domain and a DAO interface named: TestDao and then a class: 
> TestDaoImpl I get the unresolvable Error:
>
>
>
> ***
> Bound mismatch: The type Test is not a valid substitute for the bounded 
> parameter  of the type AbstractHibernateDaoImpl
>
>
>
> Yet, this is perfectly valid for the existing class: Cheese and CheeseDaoImpl.
>
>
> Any ideas?
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-01 Thread David Brown
Hello wicket bunch, I have a curious situation using the WIA ch13 DAO/hibernate 
code. When I try to introduce a third class aptly named: Test in the domain and 
a DAO interface named: TestDao and then a class: TestDaoImpl I get the 
unresolvable Error:



***
Bound mismatch: The type Test is not a valid substitute for the bounded 
parameter  of the type AbstractHibernateDaoImpl



Yet, this is perfectly valid for the existing class: Cheese and CheeseDaoImpl.


Any ideas?



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org