}
else if (qName.equalsIgnoreCase("Author")) {
Matcher makeMatch = Pattern.compile("\\d+").matcher((String)temp);
makeMatch.find();
String inputInt = makeMatch.group();
Author author = (Author) this.login.getAuthors_map().get(Integer.parseInt(inputInt));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
Date date=null;
try {
if (this.temp_pub_date!=null){
date = sdf.parse((String) this.temp_pub_date);