public static String getConfigElementTargetName(String xpath, ConfigContext ctx)
{
String targetName = null;
try {
// Get target name for event
TargetBuilder targetBuilder = new TargetBuilder();
return targetBuilder.getTargetNameForXPath(xpath, ctx, true);
} catch(Exception e)
{
//can not find target -> get default (domain)
}
return null;