We retrive the password as string but stored in an object.
So i want to get back once again to string
Object resultObj = null;
try
{
resultObj = ServiceUtils.verifyQuerry(argList);
// Here we get the password from DB
}
catch(MoveoException mex)
{
throw new ServletException(mex.getMessage(),mex);
}
if(null != resultObj)
{
CompanyDO companyDO = (CompanyDO) resultObj;
// Here i want print the password
return nextPage;
}
How to do this ?