protected boolean buildCustomMapKey() {
   MapKey xmlMapKey = this.getXmlMapKey();
   return (xmlMapKey != null) && (xmlMapKey.getName() != null);
 }
 protected String buildSpecifiedMapKey() {
   MapKey xmlMapKey = this.getXmlMapKey();
   return (xmlMapKey == null) ? null : xmlMapKey.getName();
 }