* @throws EnterpriseFieldException
* @throws EnterpriseObjectQueryException
*/
private BasicPerson getBasicPerson(String instId) throws EnterpriseConfigurationObjectException, EnterpriseFieldException, EnterpriseObjectQueryException {
LightweightPerson lPerson =
(LightweightPerson)appConfig.getObject(LIGHTWEIGHT_PERSON);
logger.info("["+portletName+"] Got LightweightPerson...");
lPerson.setInstitutionalId(instId);
logger.info("["+portletName+"] Set instid on lightweight person...");
BasicPerson aeo = (BasicPerson)appConfig.getObject(BASIC_PERSON);
logger.info("["+portletName+"] Got " + BASIC_PERSON + " from AppConfig, performing Query...");