Lewis John McGibbney created GORA-309:
-----------------------------------------
Summary: Align GORA_94 data definition with Avro 1.7.X
specification
Key: GORA-309
URL: https://issues.apache.org/jira/browse/GORA-309
Project: Apache Gora
Issue Type: Improvement
Components: gora-compiler, gora-core
Affects Versions: 0.4
Reporter: Lewis John McGibbney
Fix For: 0.5
Right now in Avro 1.7.6 we can add data to our data bean(s) as follows[0].
User user1 = new User();
user1.setName("Alyssa");
user1.setFavoriteNumber(256);
// Leave favorite color null
// Alternate constructor
User user2 = new User("Ben", 7, "red");
// Construct via builder
User user3 = User.newBuilder()
.setName("Charlie")
.setFavoriteColor("blue")
.setFavoriteNumber(null)
.build();
In current GORA_94 gora-compiler code we DO NOT shadow this behavior. This
issue should ensure that we do.
[0] http://avro.apache.org/docs/current/gettingstartedjava.html#Creating+Users
--
This message was sent by Atlassian JIRA
(v6.2#6252)