/// @method getDomain
/// Returns the domain where this object is located.
/// @synopsis Configurable getDomain()
public Any m_getDomain()
{
Domain domain;
if (_conf instanceof Zone) {
domain = ((Zone)_conf).getDomain();
} else {
domain = _conf.getParent().getDomain();
}