* Lookup the identified profile.
* @param id of profile to look up
* @return Profile
*/
public ProfileDBO lookupProfile(String profile_id) throws ConfigurationException {
ProfileDBO result = null;
Session session = null;
try {
session = sf.openSession();
Query q = session.createQuery(PROFILE_DESC_QRY);
q.setParameter(0,profile_id, Hibernate.STRING);