if(iterBiobjPars.hasNext()){
identif = identif + "&";
}
}
logger.debug("identifier produced : " + identif);
BASE64Encoder encoder = new BASE64Encoder();
String ecodedIdentif = "";
int index = 0;
while(index<identif.length()){
String tmpStr = "";
try{
tmpStr = identif.substring(index, index + 10);
} catch (Exception e) {
tmpStr = identif.substring(index, identif.length());
}
String tmpEncoded = encoder.encode(tmpStr.getBytes());
ecodedIdentif = ecodedIdentif + tmpEncoded;
index = index + 10;
}
logger.debug("end method execution, returning encoded identifier: " + ecodedIdentif);