public static ims.core.admin.domain.objects.SecurityToken extractSecurityToken(
      ims.domain.ILightweightDomainFactory domainFactory,
      ims.admin.vo.SecurityTokenVo valueObject,
      HashMap domMap) {
    if (null == valueObject) {
      return null;
    }
    Integer id = valueObject.getID_SecurityToken();
    ims.core.admin.domain.objects.SecurityToken domainObject = null;
    if (null == id) {
      if (domMap.get(valueObject) != null) {
        return (ims.core.admin.domain.objects.SecurityToken) domMap.get(valueObject);
      }
      // ims.admin.vo.SecurityTokenVo ID_SecurityToken field is unknown
      domainObject = new ims.core.admin.domain.objects.SecurityToken();
      domMap.put(valueObject, domainObject);
    } else {
      String key = (valueObject.getClass().getName() + "__" + valueObject.getID_SecurityToken());
      if (domMap.get(key) != null) {
        return (ims.core.admin.domain.objects.SecurityToken) domMap.get(key);
      }
      domainObject =
          (ims.core.admin.domain.objects.SecurityToken)
              domainFactory.getDomainObject(ims.core.admin.domain.objects.SecurityToken.class, id);

      // TODO: Not sure how this should be handled. Effectively it must be a staleobject exception,
      // but maybe should be handled as that further up.
      if (domainObject == null) return null;

      domMap.put(key, domainObject);
    }
    domainObject.setVersion(valueObject.getVersion_SecurityToken());

    domainObject.setParams(
        ims.admin.vo.domain.SecurityParamVoAssembler.extractSecurityTokenParametersSet(
            domainFactory, valueObject.getParams(), domainObject.getParams(), domMap));
    ims.framework.utils.DateTime dateTime2 = valueObject.getExpirationTimeStamp();
    java.util.Date value2 = null;
    if (dateTime2 != null) {
      value2 = dateTime2.getJavaDate();
    }
    domainObject.setExpirationTimeStamp(value2);
    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getTokenID() != null && valueObject.getTokenID().equals("")) {
      valueObject.setTokenID(null);
    }
    domainObject.setTokenID(valueObject.getTokenID());

    return domainObject;
  }
  /**
   * 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;
  }