/**
   * Update the ValueObject with the Domain Object.
   *
   * @param map DomainObjectMap of DomainObjects to already created ValueObjects.
   * @param valueObject to be updated
   * @param domainObject ims.core.admin.domain.objects.SecurityToken
   */
  public static ims.admin.vo.SecurityTokenVo insert(
      DomainObjectMap map,
      ims.admin.vo.SecurityTokenVo valueObject,
      ims.core.admin.domain.objects.SecurityToken domainObject) {
    if (null == domainObject) {
      return valueObject;
    }
    if (null == map) {
      map = new DomainObjectMap();
    }

    valueObject.setID_SecurityToken(domainObject.getId());
    valueObject.setIsRIE(domainObject.getIsRIE());

    // If this is a recordedInError record, and the domainObject
    // value isIncludeRecord has not been set, then we return null and
    // not the value object
    if (valueObject.getIsRIE() != null
        && valueObject.getIsRIE().booleanValue() == true
        && !domainObject.isIncludeRecord()) return null;

    // If this is not a recordedInError record, and the domainObject
    // value isIncludeRecord has been set, then we return null and
    // not the value object
    if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false)
        && domainObject.isIncludeRecord()) return null;

    // params
    valueObject.setParams(
        ims.admin.vo.domain.SecurityParamVoAssembler
            .createSecurityParamVoCollectionFromSecurityTokenParameters(
                map, domainObject.getParams()));
    // expirationTimeStamp
    java.util.Date expirationTimeStamp = domainObject.getExpirationTimeStamp();
    if (null != expirationTimeStamp) {
      valueObject.setExpirationTimeStamp(new ims.framework.utils.DateTime(expirationTimeStamp));
    }
    // tokenID
    valueObject.setTokenID(domainObject.getTokenID());
    return valueObject;
  }