Konstantin Usachev created AVRO-1820:
----------------------------------------
Summary: Read annotations to request's fields
Key: AVRO-1820
URL: https://issues.apache.org/jira/browse/AVRO-1820
Project: Avro
Issue Type: Bug
Components: java
Affects Versions: 1.8.0
Reporter: Konstantin Usachev
IDL compiler supports annotations on field's type but doesn't support
annotations on field itself. I mean you can write something like
{code}
...
void method(int @annotation("value") param);
...
{code}
which translates to
{code}
...{
"name" : "param",
"type" : "int",
"annotation" : "value"
}...
{code}
but we lose annotations at org.apache.avro.Protocol.parseMessage. Another
related to this bug is AVRO-1819
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)