* : a string with the name of the sortlist that is to be stored
* @param sortList
* : a list containing a sort order
*/
protected void addSortOrderList(String sortListName, String sortList[]) {
SortOrder tempList = new SortOrder();
tempList.setName(new String(sortListName));
tempList.setSortList(sortList);
tempList.setLastPrefered(sortList[0]);
tempList.setAscDesc("DESC");
sortListKeeper.put(sortListName, tempList);
}