public Event[] getAllEvents(String path,String serName){
PersistenceStrategy strategy = new FilePersistenceStrategy(new File(path+"/"+serName));
// creates the list:
List list = new XmlArrayList(strategy);
if(list.size()>0){
Event[] array = (Event[])list.toArray(new Event[list.size()]);
return array;
}
else
return null;
}