I'm improving with RequestFactory as succesfully. I have a question
about datastore.Key (again), The correct way to expose it to a client
side is with KeyFactory (keyToString...)? I've tried to use
@ProxyForName(value = "com.google.appengine.api.datastore.Key") public
interface KeyProxy extends ValueProxy {...} but I'm not sure it works
(actually it looks like is not working). what you think? a little
help, please.
=====================================================
@ProxyForName(value = "com.google.appengine.api.datastore.Key")
public interface KeyProxy extends ValueProxy {
long getId();
String getKind();
String getName();
String getNamespace();
KeyProxy getParent();
boolean isComplete();
}
I'm trying to use RequestFactory, now I have to use some domain
methods, for example an myDomainClass.contains(anotherDomainClass).
this is a method created on the domian data class, but I need to to
this check in the client side. I've tried to use a
myDomainClassProxy.contains(anotherDomainClassProxy) method, but I've
got a "only getters and setter allowed" message.
Please, I'm really confused on how to use RequestFactory / Domain
Classes and Its methods from client side.
Thanks a lot! I hope a quick answer.