java - GAE Not able to access Public methods of Entity Class in Clientside -


i using objectify in data store operations in endpoint classes. have entity class

there public method :

    public void setregistrationrecord(registrationrecord registrationrecord) {         this.registrationrecord = ref.create(key.create(registrationrecord.class, registrationrecord.getid()));     } 

in client side not able access method

please let me know wrong doing.

thanks in advance

objectify server-side framework. creating key requires gae sdk, not available client-side.


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -