Examples of InstitutionalIdentity


Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

    }

    // Verify that all message objects required are in AppConfig.
    // Get a configured NetId object out of AppConfig.
    try {
      InstitutionalIdentity instIdent = (InstitutionalIdentity)getAppConfig()
        .getObject("InstitutionalIdentity");
      UnknownPerson uPerson = (UnknownPerson)getAppConfig()
        .getObject("UnknownPerson");  
      Name aName = (Name)getAppConfig().getObject("Name");
    }
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

      epc = m_connPool.getExclusiveConnection();
      conn = epc.getConnection();
      conn.setAutoCommit(true);

      // Retrieve the InstitutionalIdentity.
      InstitutionalIdentity instIdent = new InstitutionalIdentity();
      instIdent = retrieveInstitutionalIdentity(conn, uPerson);
      return instIdent;
    }
    catch (SQLException se) {
      // There was an error retrieving a database connection from the pool to
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

  private final InstitutionalIdentity retrieveInstitutionalIdentity
    (java.sql.Connection conn, UnknownPerson uPerson) throws
    I2sRepositoryException {
    // If a social security number is provided, retrieve the
    // InstitutionalIdentity using that identifier.
    InstitutionalIdentity instIdent = new InstitutionalIdentity();
    if (uPerson.getSocialSecurityNumber() != null) {
      Identifier id = new Identifier();
      try {
        id.setType("SocialSecurityNumber");
        id.setValue(uPerson.getSocialSecurityNumber());
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

      epc = m_connPool.getExclusiveConnection();
      conn = epc.getConnection();
      conn.setAutoCommit(true);

      // Retrieve the InstitutionalIdentity.
      InstitutionalIdentity instIdent = new InstitutionalIdentity();
      instIdent = retrieveInstitutionalIdentity(conn, id);
      return instIdent;
    }
    catch (SQLException se) {
      // There was an error retrieving a database connection from the pool to
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

    boolean foundSupportedIdentifierType = false;

    // If the Identifier type is SocialSecurityNumber, retrieve the
    // InstitutionalIdentity by SSN.
    InstitutionalIdentity instIdent = new InstitutionalIdentity();
    if (id.getType().equalsIgnoreCase("SocialSecurityNumber")) {
      foundSupportedIdentifierType = true;
      instIdent = retrieveInstitutionalIdentityBySsn(conn, id.getValue());
    }
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

    (java.sql.Connection conn, String ssn) throws I2sRepositoryException {
    logger.debug("[RdbmsI2sRepository] Retrieving InstitutionalIdentity for " +
      "SSN: " + ssn + ".");

    // Get a configured InstitutionalIdentity object out of AppConfig.
    InstitutionalIdentity instIdent = new InstitutionalIdentity();
    try {
      instIdent = (InstitutionalIdentity)getAppConfig()
        .getObject("InstitutionalIdentity");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an InstitutionalIdentity object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an InstitutionalIdentity " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdBySsn] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured UnknownPerson object out of AppConfig.
    UnknownPerson uPerson = new UnknownPerson();
    try {
      uPerson = (UnknownPerson)getAppConfig().getObject("UnknownPerson");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an UnknownPerson object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an UnknownPerson " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdBySsn] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured Name object out of AppConfig.
    Name name = new Name();
    try {
      name = (Name)getAppConfig().getObject("Name");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving a Name object from AppConfig. Log it and
      // throw an exception.
      String errMsg = "An error occurred retrieving a Name object from " +
        "AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdBySsn] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }
   
    // Initialize a query string to retrieve the InstitutionalIdentity.
    String getString1 = "SELECT INST_ID, FIRST_NAME, MIDDLE_NAME, LAST_NAME, " +
      "SSN, BIRTH_DATE, GENDER FROM T_INST_IDENT WHERE SSN = ? AND " +
      "TERMINATED_DATE IS NULL";
     
    try {
      PreparedStatement getStmt1 = conn.prepareStatement(getString1);
      getStmt1.clearParameters();
      getStmt1.setString(1, ssn);
      ResultSet r1 = getStmt1.executeQuery();
      if (r1.next()) {
        // The InstitutionalIdentity exists. Log a message and build the
        // InstitutionalIdentity object.
        logger.debug("[RdbmsI2sRepository.retrieveInstitutionalIdentityBySsn] "
          + "Found an InstitutionalIdentity in the database for SSN: " + ssn +
          ".");
        // Set the values of the Name object.
        try {
          name.setFirstName(r1.getString(2));
          name.setMiddleName(r1.getString(3));
          name.setLastName(r1.getString(4));
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the Name. Log it,
          // close the statement, and throw an exception.
          String errMsg = "An error occurred seeting field values for the " +
            "Name. the exception is: " + efe.getMessage();
          logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentityBySsn]"
            + " " + errMsg);
          getStmt1.close();
          throw new I2sRepositoryException(errMsg);
        }
        // Set the values of the UnknownPerson object.
        try {
          uPerson.setName(name);
          uPerson.setSocialSecurityNumber(r1.getString(5));
          org.any_openeai_enterprise.moa.objects.resources.v1_0.Date xeoStartDate =
            toXeoDate("BirthDate", r1.getDate(6));
          uPerson.setBirthDate(xeoStartDate);
          uPerson.setGender(r1.getString(7));
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the UnknownPerson.
          // Log it, close the statement, and throw an exception.
          String errMsg = "An error occurred seeting field values for the " +
            "UnknownPerson. the exception is: " + efe.getMessage();
          logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentityBySsn]"
            + " " + errMsg);
          getStmt1.close();
          throw new I2sRepositoryException(errMsg);
        }
        // Set the values of the InstitutionalIdentity object.
        try {
          instIdent.setInstitutionalId(r1.getString(1));
          instIdent.setUnknownPerson(uPerson);
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the
          // InstitutionalIdentity. Log it, close the statement, and throw an
          // exception.
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

    (java.sql.Connection conn, String instId) throws I2sRepositoryException {
    logger.debug("[RdbmsI2sRepository] Retrieving InstitutionalIdentity for " +
      "InstitutionalId: " + instId + ".");

    // Get a configured InstitutionalIdentity object out of AppConfig.
    InstitutionalIdentity instIdent = new InstitutionalIdentity();
    try {
      instIdent = (InstitutionalIdentity)getAppConfig()
        .getObject("InstitutionalIdentity");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an InstitutionalIdentity object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an InstitutionalIdentity " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdByInstId] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured UnknownPerson object out of AppConfig.
    UnknownPerson uPerson = new UnknownPerson();
    try {
      uPerson = (UnknownPerson)getAppConfig().getObject("UnknownPerson");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an UnknownPerson object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an UnknownPerson " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdByIndtId] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured Name object out of AppConfig.
    Name name = new Name();
    try {
      name = (Name)getAppConfig().getObject("Name");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving a Name object from AppConfig. Log it and
      // throw an exception.
      String errMsg = "An error occurred retrieving a Name object from " +
        "AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdByInstId] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }
   
    // Initialize a query string to retrieve the InstitutionalIdentity.
    String getString1 = "SELECT INST_ID, FIRST_NAME, MIDDLE_NAME, LAST_NAME, " +
      "SSN, BIRTH_DATE, GENDER FROM T_INST_IDENT WHERE INST_ID = ? AND " +
      "TERMINATED_DATE IS NULL";
     
    try {
      PreparedStatement getStmt1 = conn.prepareStatement(getString1);
      getStmt1.clearParameters();
      getStmt1.setString(1, instId);
      ResultSet r1 = getStmt1.executeQuery();
      if (r1.next()) {
        // The InstitutionalIdentity exists. Log a message and build the
        // InstitutionalIdentity object.
        logger.debug("[RdbmsI2sRepository.retrieveInstitutionalIdentityByInst" +
          "Id] Found an InstitutionalIdentity in the database for " +
          "InstitutionalId: " + instId + ".");
        // Set the values of the Name object.
        try {
          name.setFirstName(r1.getString(2));
          name.setMiddleName(r1.getString(3));
          name.setLastName(r1.getString(4));
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the Name. Log it,
          // close the statement, and throw an exception.
          String errMsg = "An error occurred seeting field values for the " +
            "Name. the exception is: " + efe.getMessage();
          logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentityBy" +
            "InstId] " + errMsg);
          getStmt1.close();
          throw new I2sRepositoryException(errMsg);
        }
        // Set the values of the UnknownPerson object.
        try {
          uPerson.setName(name);
          uPerson.setSocialSecurityNumber(r1.getString(5));
          org.any_openeai_enterprise.moa.objects.resources.v1_0.Date xeoStartDate =
            toXeoDate("BirthDate", r1.getDate(6));
          uPerson.setBirthDate(xeoStartDate);
          uPerson.setGender(r1.getString(7));
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the UnknownPerson.
          // Log it, close the statement, and throw an exception.
          String errMsg = "An error occurred seeting field values for the " +
            "UnknownPerson. the exception is: " + efe.getMessage();
          logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentityBy" +
            "InstId] " + errMsg);
          getStmt1.close();
          throw new I2sRepositoryException(errMsg);
        }
        // Set the values of the InstitutionalIdentity object.
        try {
          instIdent.setInstitutionalId(r1.getString(1));
          instIdent.setUnknownPerson(uPerson);
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the
          // InstitutionalIdentity. Log it, close the statement, and throw an
          // exception.
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

    I2sRepositoryException {
    logger.debug("[RdbmsI2sRepository] Retrieving InstitutionalIdentity for " +
      "UnknownPerson: " + queryPerson.toString() + ".");

    // Get a configured InstitutionalIdentity object out of AppConfig.
    InstitutionalIdentity instIdent = new InstitutionalIdentity();
    try {
      instIdent = (InstitutionalIdentity)getAppConfig()
        .getObject("InstitutionalIdentity");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an InstitutionalIdentity object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an InstitutionalIdentity " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured UnknownPerson object out of AppConfig.
    UnknownPerson uPerson = new UnknownPerson();
    try {
      uPerson = (UnknownPerson)getAppConfig().getObject("UnknownPerson");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an UnknownPerson object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an UnknownPerson " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured Name object out of AppConfig.
    Name name = new Name();
    try {
      name = (Name)getAppConfig().getObject("Name");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving a Name object from AppConfig. Log it and
      // throw an exception.
      String errMsg = "An error occurred retrieving a Name object from " +
        "AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }
   
    // Initialize a query string to retrieve the InstitutionalIdentity.
    String getString1 = "SELECT INST_ID, FIRST_NAME, MIDDLE_NAME, LAST_NAME, " +
      "SSN, BIRTH_DATE, GENDER FROM T_INST_IDENT WHERE LAST_NAME = ? " +
      "AND BIRTH_DATE = ? AND GENDER = ? AND TERMINATED_DATE IS NULL";

    // If the UnknownPerson in the query has a FirstName, then add it to the
    // where clause and indicate that we must set this parameter of the
    // subsequent prepared statement.
    boolean hasFirstName = false;
    if (queryPerson.getName().getFirstName() != null) {
      getString1 = getString1 + " AND FIRST_NAME = ?";
      hasFirstName = true;
    }

    // If the UnknownPerson in the query has a MiddleName, then add it to the
    // where clause and indicate that we must set this parameter of the
    // subsequent prepared statement.
    boolean hasMiddleName = false;
    if (queryPerson.getName().getMiddleName() != null) {
      getString1 = getString1 + " AND MIDDLE_NAME = ?";
      hasMiddleName = true;
    }
   
    try {
      PreparedStatement getStmt1 = conn.prepareStatement(getString1);
      getStmt1.clearParameters();
      getStmt1.setString(1, queryPerson.getName().getLastName());
      java.sql.Date birthDate = null;
      try { birthDate = toSqlDate(queryPerson.getBirthDate()); }
      catch(InvalidFormatException ife) {
        // An error occurred formatting the birth date. Log it and throw an
        // exception.
        String errMsg = "An error occurred formatting the birth date. The " +
          "excception is: " + ife.getMessage();
        logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentity] " +
          errMsg);
      }
      getStmt1.setDate(2, birthDate);
      getStmt1.setString(3, queryPerson.getGender());
      if (hasFirstName == true) {
        getStmt1.setString(4, queryPerson.getName().getFirstName());
      }
      if (hasMiddleName == true) {
        getStmt1.setString(5, queryPerson.getName().getMiddleName());
      }
     
      ResultSet r1 = getStmt1.executeQuery();
      if (r1.next()) {
        // The InstitutionalIdentity exists. Log a message and build the
        // InstitutionalIdentity object.
        logger.debug("[RdbmsI2sRepository.retrieveInstitutionalIdentity] " +
          "Found an InstitutionalIdentity in the database for the " +
          "UnknownPerson: " + queryPerson.toString());
        // Set the values of the Name object.
        logger.debug("InstId: " + r1.getString(1));
        logger.debug("FirstName: " + r1.getString(2));
        logger.debug("MiddleName: " + r1.getString(3));
        logger.debug("LastName: " + r1.getString(4));
        logger.debug("SSN: " + r1.getString(5));
        logger.debug("BirthDate (date): " + r1.getDate(6).toString());
        // Note: uncommenting the next line with break this gateway for MySQL.
        // logger.debug("BirthDate (timestamp): " + r1.getTimestamp(6).toString());
        logger.debug("Gender: " + r1.getString(7));
        try {
          name.setFirstName(r1.getString(2));
          name.setMiddleName(r1.getString(3));
          name.setLastName(r1.getString(4));
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the Name. Log it,
          // close the statement, and throw an exception.
          String errMsg = "An error occurred setting field values for the " +
            "Name. the exception is: " + efe.getMessage();
          logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentity] " +
            errMsg);
          getStmt1.close();
          throw new I2sRepositoryException(errMsg);
        }
        // Set the values of the UnknownPerson object.
        try {
          uPerson.setName(name);
          uPerson.setSocialSecurityNumber(r1.getString(5));
          org.any_openeai_enterprise.moa.objects.resources.v1_0.Date xeoStartDate =
            toXeoDate("BirthDate", r1.getDate(6));
          uPerson.setBirthDate(xeoStartDate);
          uPerson.setGender(r1.getString(7));
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the UnknownPerson.
          // Log it, close the statement, and throw an exception.
          String errMsg = "An error occurred seeting field values for the " +
            "UnknownPerson. the exception is: " + efe.getMessage();
          logger.fatal("[RdbmsI2sRepository.retrieveInstitutionalIdentity]"
            + " " + errMsg);
          getStmt1.close();
          throw new I2sRepositoryException(errMsg);
        }
        // Set the values of the InstitutionalIdentity object.
        try {
          instIdent.setInstitutionalId(r1.getString(1));
          instIdent.setUnknownPerson(uPerson);
        }
        catch (EnterpriseFieldException efe) {
          // An error occurred setting field values for the
          // InstitutionalIdentity. Log it, close the statement, and throw an
          // exception.
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

      epc = m_connPool.getExclusiveConnection();
      conn = epc.getConnection();
      conn.setAutoCommit(false);

      // Generate the InstitutionalIdentity.
      InstitutionalIdentity instIdent = new InstitutionalIdentity();
      instIdent = generateInstitutionalIdentity(pub, conn, uPerson);
      return instIdent;
    }
    catch (JMSException jmse) {
      // There was an error retrieving a pub/sub producer from the pool to
View Full Code Here

Examples of org.any_openeai_enterprise.moa.jmsobjects.coreapplication.v1_0.InstitutionalIdentity

      throw new I2sRepositoryException(errMsg);
    }

    // Determine if the UnknownPerson has already been assigned an
    // InstitutionalId. If so, log it and throw an exception.
    InstitutionalIdentity existingInstIdent = new InstitutionalIdentity();
    existingInstIdent = retrieveInstitutionalIdentity(conn, uPerson);
    if (existingInstIdent != null) {
      String errMsg = "An InstitutionalId has already been assigned to this " +
        "UnknownPerson. Cannot generate a new InstitutionalIdentity fot this " +
        "UnknownPerson.";
      logger.fatal("[RdbmsI2sRepository.generateInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);     
    }
   
    // Retrieve the next InstitutionalId to use for this person.
    String instId = null;
    try { instId = getInstIdSequence().next(); }
    catch (SequenceException se) {
      // An error occurred getting the next value from the institutional ID
      // sequence. Log it and throw an exception.
      String errMsg = "An error occurred getting the next value from the " +
        "institutional ID sequence. The exception is: " + se.getMessage();
      logger.fatal("[RdbmsI2sRepository.generateInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Get a configured InstitutionalIdentity object out of AppConfig.
    InstitutionalIdentity instIdent = new InstitutionalIdentity();
    try {
      instIdent = (InstitutionalIdentity)getAppConfig()
        .getObject("InstitutionalIdentity");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving an InstitutionalIdentity object from
      // AppConfig. Log it and throw an exception.
      String errMsg = "An error occurred retrieving an InstitutionalIdentity " +
        "object from AppConfig. The exception is: " + eoce.getMessage();
      logger.fatal("[RdbmsI2sRepository.generateInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Set the values of the InstitutionalIdentity.
    try {
      instIdent.setInstitutionalId(instId);
      instIdent.setUnknownPerson(uPerson);
    }
    catch (EnterpriseFieldException efe) {
      // An error occurred setting field values for the InstitutionalIdentity.
      // Log it and throw an exception.
      String errMsg = "An error occurred setting field values for the " +
        "InstitutionalIdentity. The exception is: " + efe.getMessage();
      logger.fatal("[RdbmsI2sRepository.generateInstitutionalIdentity] " +
        errMsg);
      throw new I2sRepositoryException(errMsg);
    }

    // Set the TestId.
    instIdent.setTestId(uPerson.getTestId());

    // Create the InstitutionalIdentity.
    createInstitutionalIdentity(pub, conn, instIdent);

    return instIdent;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.