/**
  * Retrieve a single object by pkey.
  *
  * @param      int $pk the primary key.
  * @param      PropelPDO $con the connection to use
  * @return     notification
  */
 public static function retrieveByPK($pk, PropelPDO $con = null)
 {
     if (null !== ($obj = notificationPeer::getInstanceFromPool((string) $pk))) {
         return $obj;
     }
     $criteria = new Criteria(notificationPeer::DATABASE_NAME);
     $criteria->add(notificationPeer::ID, $pk);
     $v = notificationPeer::doSelect($criteria, $con);
     return !empty($v) > 0 ? $v[0] : null;
 }