public SecurityDomain(String name, String alias) {
    ValidateUtil.validateNotEmpty(name, "name");
    ValidateUtil.validateNotEmpty(alias, "alias");

    _name = name;
    _alias = alias;
  }
 /**
  * Get an attribute mapping for the attribute with the given Id.
  *
  * @param attributeId Id of an attribute whose mapping to lookup. Not empty. @see AttributeIds
  * @return An attribute mapping for the attribute with the given Id. Null if there is no mapping
  *     for the specified attribute.
  */
 public IdentityStoreAttributeMapping getAttributeMapping(String attributeId) {
   ValidateUtil.validateNotEmpty(attributeId, attributeId);
   return this._storeAttributes.get(attributeId);
 }