10.07.2015 Views

Lotus Instant Messaging/ Web Conferencing ... - IBM Redbooks

Lotus Instant Messaging/ Web Conferencing ... - IBM Redbooks

Lotus Instant Messaging/ Web Conferencing ... - IBM Redbooks

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

esults = statement.executeQuery();while(results.next()) {java.util.Date resultDate = results.getDate(2);String sourceUser = cleanUserID(results.getString(3));String destinationUser = cleanUserID(results.getString(4));String operation = results.getString(5);Session session = new Session(resultDate, sourceUser,destinationUser, operation);sessions.add(session);}results.close();statement.close();connection.close();}catch(Exception e) {System.out.println("Exception in DatabaseStoreKeeper.getSessions: " +e.toString());try {results.close();statement.close();connection.close();}catch(Exception e2) {}}}return sessions;private String cleanUserID(String userID) {String cleanedString = "";if(userID.indexOf(" ") > -1) {userID = userID.substring(0,userID.indexOf(" "));}userID = userID.toLowerCase();}return userID;}Appendix A. Visualizing Sametime 441

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!