Remove final Modifier from SimpleTableStorageEntity
Brought to you by:
yvesyang
The SimpleTableStorageEnitity is currently final and has protected constructors which makes it useless. This file is conditionally tested in AtomUtil and provides a way to create dynamic table storage entities because AtomUtil doesn't use reflexion if the class is an instanceOf SimpleTableStorageEntity. I am unclear why the class needs to be final and removing the ability to subclass and create dynamic tables.
+1 for me. I really need this class in order to be able to create dynamic tables. Without this the only way to use the API is with model objects that are introspected. In my application at least 90% of the columns are not known when we design the application, and therefore model objects are not possible.