/*
* Parse metadata to get APAM core declaration
*/
try {
Decoder parser = new MetadataParser(this);
this.declaration = parser.decode(m_componentMetadata,this);
} catch (Exception e) {
e.printStackTrace();
this.declaration = null;
this.declarationError = new ConfigurationException(e.getLocalizedMessage());