*
* @return conformance id value
*/
public String getConformance()
{
TextType tt = getConformanceProperty();
if (tt == null)
{
for (Attribute attribute : getAllAttributes())
{
if (attribute.getName().equals(CONFORMANCE))
{
return attribute.getValue();
}
}
return null;
}
else
{
return tt.getStringValue();
}
}