Re: [google-appengine] Parameterized type com.googlecode.objectify.Key not supported.

2017-03-15 Thread Rajesh Gupta
Hello all, In the above mentioned LeadActivity class, we were using @ApiResourceProperty(ignored = AnnotationBoolean.TRUE) for some fields. For, some fields we were dependent on the transformer class in the @Api annotation Endpoints was not liking it. We cleaned up the LeadActivity class,

Re: [google-appengine] Parameterized type com.googlecode.objectify.Key not supported.

2017-03-15 Thread Rajesh Gupta
We are using ofy Key, so transformers class is also added to the @Api annotation to take care of the ofy key class. Please see the following. @Api(name = "jobscustomreportsendpoint", version = "v2", description = "An API to perform jobs custom reports", transformers = { KeyTransformer.class

Re: [google-appengine] Parameterized type com.googlecode.objectify.Key not supported.

2017-03-15 Thread Rajesh Gupta
Trying to do further investigation on the same issue. I typed http://localhost:/_ah/api in the browser I got the following ErrorFailed to retrieve API configs with status: 400 What can be wrong going here? Regards, Rajesh *www.VeersoftSolutions.com *

[google-appengine] Parameterized type com.googlecode.objectify.Key not supported.

2017-03-14 Thread Yashavanta S B
I am using Google App Engine 1.9.42, Eclipse, Objectify 4.0rc2. My Class is as follows: @Entity public class LeadActivity { @Id private Long id; private String subject; Key jobKey; //getters & setters } When I try calling the google endpoint for this class thru Eclipse, I get the