public LinkedHashMap<String,LinkedHashMap> getSchemaContent() {
try {
InputStream inputFile = getClass().getResourceAsStream( this.getResourceName() );
MapFileHandler loader = new MapFileHandler();
loader.loadFile( inputFile );
return loader.getOutputFields();
}
catch( Exception e ) {
e.printStackTrace();
}