logger.debug("OUT");
}
}
private RememberMe toRememberMe(SbiRememberMe hibObj) {
RememberMe toReturn = new RememberMe();
toReturn.setId(hibObj.getId());
toReturn.setName(hibObj.getName());
toReturn.setDescription(hibObj.getDescription());
toReturn.setUserName(hibObj.getUserName());
SbiObjects obj = hibObj.getSbiObject();
toReturn.setObjId(obj.getBiobjId());
toReturn.setDocumentLabel(obj.getLabel());
toReturn.setDocumentName(obj.getName());
toReturn.setDocumentDescription(obj.getDescr());
SbiDomains docType = obj.getObjectType();
toReturn.setDocumentType(docType.getValueCd());
toReturn.setParameters(hibObj.getParameters());
SbiEngines engine = obj.getSbiEngines();
toReturn.setEngineName(engine.getName());
SbiSubObjects subObj = hibObj.getSbiSubObject();
if (subObj != null) {
toReturn.setSubObjId(subObj.getSubObjId());
toReturn.setSubObjName(subObj.getName());
}
return toReturn;
}