I have two different cloud endpoint methods with two different name signatures
@ApiMethod(name = "getWhiteCats", httpMethod = HttpMethod.POST)
public CollectionResponse<Cat> getWhiteCats(CatCall request)
And
@ApiMethod(name = "getGrayCats", httpMethod = HttpMethod.POST)
public CollectionResponse<Cat> getGrayCats(CatCall request)
But Eclipse is giving the exception
Description Resource Location Path Type There was a problem generating the API metadata for your Cloud Endpoints classes: com.google.api.server.spi.config.validation.DuplicateRestPathException: Multiple methods with same rest path "POST collectionresponse_cat":"getWhiteCats" and "getGrayCats"
Any thoughts on how I might resolve this issue?