now i want to use this bean class outside server package
but i face problem during compilation with ( com.google.appengine )
that can't be resolved.
@PersistenceCapable(identityType = IdentityType.APPLICATION,
detachable = "true")
public class HTNews {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key id;
@Persistent
private String name;
@Persistent
private String linkUrl;
@Persistent
private BlobKey imageKey;
.....
is there any way to do that ??
please help .
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.