Extending User and GWT

3 messages Options
Embed this post
Permalink
asif11

Extending User and GWT

Reply Threaded More More options
Print post
Permalink
I'm trying to use the framework but have come unstuck with the following :

1. I wanted to extend User but because you have marked it as an Entity with no inheritence annotation I have had to have my own User entity which has a one2one mapping to the appFuse user. Is it possible you could mark the User class as @Inheritance(strategy=InheritanceType.JOINED) or even better just as a SuperMappedClass ? Or is there another way to integrate into the appfuse user ?

2. I want to use the User entity within GWT but because it uses apache string builders,etc I cant without doing some sourcey with the apache files. Do you have very simple version of these entities that can be used within GWT ?

Thanks for your efforts.
mraible

Re: Extending User and GWT

Reply Threaded More More options
Print post
Permalink
If it's easier, you can run "appfuse:full-source" or import the core classes (http://appfuse.org/display/APF/AppFuse+Core+Classes) and change the model objects as necessary.

Matt

On Thu, Mar 26, 2009 at 4:02 AM, asif11 <[hidden email]> wrote:

I'm trying to use the framework but have come unstuck with the following :

1. I wanted to extend User but because you have marked it as an Entity with
no inheritence annotation I have had to have my own User entity which has a
one2one mapping to the appFuse user. Is it possible you could mark the User
class as @Inheritance(strategy=InheritanceType.JOINED) or even better just
as a SuperMappedClass ? Or is there another way to integrate into the
appfuse user ?

2. I want to use the User entity within GWT but because it uses apache
string builders,etc I cant without doing some sourcey with the apache files.
Do you have very simple version of these entities that can be used within
GWT ?

Thanks for your efforts.
--
View this message in context: http://www.nabble.com/Extending-User-and-GWT-tp22718973s2369p22718973.html
Sent from the AppFuse - Dev mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]


asif11

Re: Extending User and GWT

Reply Threaded More More options
Print post
Permalink
Thanks for the speedy response.