On 12/07/2011 02:40 PM, Francois Forster wrote: > It seems to work when I do the reverse (add @aliases(["v2.Result"]) to the v1 > schema), but that's not useful when dealing with versioning.
Note that you could programmatically add the alias, e.g.: v2Response.addAlias(v1Response.getFullName()); v2Result.addAlias(v1Result.getFullName()); So you don't actually have to change the stored data. Doug
