I would like to build this app
http://docs.datatorrent.com/tutorials/salesdimensions/
But I have an issue , in SalesDemo.java I should import
org.apache.apex.malhar.lib.dimensions.DimensionsEvent.Aggregate; (on line
12)
and org.apache.apex.malhar.lib.dimensions.DimensionsEvent.InputEvent; (on
line 13) .
These 2 classes are nested classes to DimensionsEvent and when I compile
this class compiler (lauched inside maven) throw an error : package
org.apex.malhar.lib.dimensions.DimensionsEvent does not exist and it's
right there is not a such package - DimensonsEvent it's a class not a
package and Aggregate and InputEvent are nested classes
Pllease see the source for the source here
https://github.com/DataTorrent/examples/blob/master/dt-demo/dimensions/src/main/java/com/datatorrent/demos/dimensions/sales/generic/SalesDemo.java
How should import (and reference in code) nested classes?
Many thanks,
Aurel