/**
* @return
*/
private StampaPrimaNotaIn creaStampaPrimaNotaIn() {
StampaPrimaNotaIn stampaPrimaNotaIn = new StampaPrimaNotaIn();
ArrayList<String> users = new ArrayList<String>();
users.add("Bassi");
stampaPrimaNotaIn.setUser(users);
Calendar cal = Calendar.getInstance();
cal.set(Calendar.DAY_OF_MONTH, 1);
cal.set(Calendar.MONTH, 0);
cal.set(Calendar.YEAR, 2008);
stampaPrimaNotaIn.setDallaData(cal.getTime());
cal.set(Calendar.DAY_OF_MONTH, 23);
cal.set(Calendar.MONTH, 8);
cal.set(Calendar.YEAR, 2008);
stampaPrimaNotaIn.setAllaData(cal.getTime());
return stampaPrimaNotaIn;
}