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
Post a Comment